Reverted part of changes in the previous commit

This commit is contained in:
NovaRain
2020-02-07 19:16:37 +08:00
parent 537bea45c0
commit 7848e1612b
+6 -6
View File
@@ -97,14 +97,14 @@ enum CritterFlags : long
Level = 0x04, // Level received ?
Addict = 0x08, // Drug addiction ?
NoSteal = 0x20, // Can't be stolen from
NoDrop = 0x40, // Can't Drop items
NoDrop = 0x40, // Doesn't drop items
NoLimbs = 0x80, // Can't lose limbs
NoAges = 0x100, // Dead Bodies Can't Age
NoHeal = 0x200, // Can't Heal by Aging
NoAges = 0x100, // Dead body does not disappear
NoHeal = 0x200, // Damage is not healed with time
Invulnerable = 0x400, // Is Invulnerable (cannot be hurt)
NoFlatten = 0x800, // Can't Flatten on Death (leaves no dead body)
SpecialDeath = 0x1000, // Has Special Death
RangeHth = 0x2000, // Has Extra Hand-To-Hand Range
NoFlatten = 0x800, // Doesn't flatten on death (leaves no dead body)
SpecialDeath = 0x1000, // Has a special type of death
RangeHth = 0x2000, // Has extra hand-to-hand range
NoKnockBack = 0x4000, // Can't be knocked back
};