From 74847919be64e96ba89221138feee39e71c45b5a Mon Sep 17 00:00:00 2001 From: Agent X <44549182+Agent-11@users.noreply.github.com> Date: Sun, 11 Jun 2023 17:30:43 -0400 Subject: [PATCH] Extend mod name max length from 32 to 64 (#408) I remember it being more than 32 at some point but I could be wrong, I'm making this PR so color codes can be better utilized in names without hitting the max limit so quickly. --- src/pc/mods/mod.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pc/mods/mod.h b/src/pc/mods/mod.h index 9496f5087..ce6e66fad 100644 --- a/src/pc/mods/mod.h +++ b/src/pc/mods/mod.h @@ -5,7 +5,7 @@ #include #include "src/pc/platform.h" -#define MOD_NAME_MAX_LENGTH 32 +#define MOD_NAME_MAX_LENGTH 64 #define MOD_INCOMPATIBLE_MAX_LENGTH 256 #define MOD_DESCRIPTION_MAX_LENGTH 512