From 7d76feec12bdd546d38b57b60ca43d21518ebdf1 Mon Sep 17 00:00:00 2001 From: TheFurryFeline Date: Fri, 24 May 2019 13:13:14 -0400 Subject: [PATCH] Belly Modes Fix Hopefully.... This makes the settings default to be numbing and itemweak rather than the unintentional present defaults of numbing and item-stripping that results in a loss of prey's belongings. --- code/__defines/belly_modes_vr.dm | 6 +++--- html/changelogs/TheFurryFeline - Belly Modes Fixy.yml | 6 ++++++ 2 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 html/changelogs/TheFurryFeline - Belly Modes Fixy.yml diff --git a/code/__defines/belly_modes_vr.dm b/code/__defines/belly_modes_vr.dm index c85550b991..2e356a3fb7 100644 --- a/code/__defines/belly_modes_vr.dm +++ b/code/__defines/belly_modes_vr.dm @@ -30,9 +30,9 @@ //Addon mode flags #define DM_FLAG_NUMBING 0x1 -#define DM_FLAG_STRIPPING 0x2 -#define DM_FLAG_LEAVEREMAINS 0x4 //TFF 30/4/19: Ports VoreStation Remains Option - new belly mode -#define DM_FLAG_ITEMWEAK 0x8 +#define DM_FLAG_ITEMWEAK 0x2 +#define DM_FLAG_STRIPPING 0x4 +#define DM_FLAG_LEAVEREMAINS 0x8 //TFF 30/4/19: Ports VoreStation Remains Option - new belly mode // Stance for hostile mobs to be in while devouring someone. #define HOSTILE_STANCE_EATING 99 diff --git a/html/changelogs/TheFurryFeline - Belly Modes Fixy.yml b/html/changelogs/TheFurryFeline - Belly Modes Fixy.yml new file mode 100644 index 0000000000..319b7fc86c --- /dev/null +++ b/html/changelogs/TheFurryFeline - Belly Modes Fixy.yml @@ -0,0 +1,6 @@ +author: TheFurryFeline + +delete-after: True + +changes: + - bugfix: "Hopefully resets bellies back to normal to have default to numbing + itemweak to prevent accidental cases of item loss with those unfamiliar with the remains addition change to defines." \ No newline at end of file