From 9ea578987ff38bf89a83f35eceb257f8574799a0 Mon Sep 17 00:00:00 2001 From: R3dtail <45108567+R3dtail@users.noreply.github.com> Date: Fri, 26 Feb 2021 15:03:32 -0600 Subject: [PATCH 1/2] Bigger Belly Doubles the number of characters available to be used for bellies_desc_max. Additionally, doubles the number of characters available for the bellies_name_max. --- code/modules/vore/eating/vorepanel.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/vorepanel.dm b/code/modules/vore/eating/vorepanel.dm index 6e3951e60a..37ea23b171 100644 --- a/code/modules/vore/eating/vorepanel.dm +++ b/code/modules/vore/eating/vorepanel.dm @@ -4,8 +4,8 @@ #define BELLIES_MAX 20 #define BELLIES_NAME_MIN 2 -#define BELLIES_NAME_MAX 12 -#define BELLIES_DESC_MAX 1024 +#define BELLIES_NAME_MAX 24 +#define BELLIES_DESC_MAX 2048 /mob/living/proc/insidePanel() set name = "Vore Panel" From af4b8ef0c5f30c5cb583b0261610eb14940cd25c Mon Sep 17 00:00:00 2001 From: R3dtail <45108567+R3dtail@users.noreply.github.com> Date: Fri, 26 Feb 2021 19:36:44 -0600 Subject: [PATCH 2/2] Update vorepanel.dm Made it uniform with the maximum characters allowed for emotes because uniformity is nice. --- code/modules/vore/eating/vorepanel.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vore/eating/vorepanel.dm b/code/modules/vore/eating/vorepanel.dm index 37ea23b171..5622ec0382 100644 --- a/code/modules/vore/eating/vorepanel.dm +++ b/code/modules/vore/eating/vorepanel.dm @@ -5,7 +5,7 @@ #define BELLIES_MAX 20 #define BELLIES_NAME_MIN 2 #define BELLIES_NAME_MAX 24 -#define BELLIES_DESC_MAX 2048 +#define BELLIES_DESC_MAX 4096 /mob/living/proc/insidePanel() set name = "Vore Panel"