From 7a9b79565be00b1954c6ab4ff76902b6804ff76c Mon Sep 17 00:00:00 2001 From: mckaygerhard Date: Sun, 2 Jun 2024 05:22:07 -0400 Subject: [PATCH] allow "-" on mods name for allowed chars --- src/content/mods.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/mods.h b/src/content/mods.h index 279ab1415..5e80b7c90 100644 --- a/src/content/mods.h +++ b/src/content/mods.h @@ -31,7 +31,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "config.h" #include "metadata.h" -#define MODNAME_ALLOWED_CHARS "abcdefghijklmnopqrstuvwxyz0123456789_" +#define MODNAME_ALLOWED_CHARS "abcdefghijklmnopqrstuvwxyz0123456789-_" struct ModSpec {