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.
This commit is contained in:
TheFurryFeline
2019-05-24 13:13:14 -04:00
parent 4bbd2cbe8c
commit 7d76feec12
2 changed files with 9 additions and 3 deletions
+3 -3
View File
@@ -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
@@ -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."