mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 12:08:28 +01:00
Merge pull request #14739 from Heroman3003/historically-deprecated-stuff
Makes borgs not stunned when weakened
This commit is contained in:
@@ -87,7 +87,9 @@
|
||||
death()
|
||||
|
||||
if (src.stat != 2) //Alive.
|
||||
if (src.paralysis || src.stunned || src.weakened || !src.has_power) //Stunned etc.
|
||||
if (src.weakened > 0) // Do not fullstun on weaken
|
||||
AdjustWeakened(-1)
|
||||
if (src.paralysis || src.stunned || !src.has_power) //Stunned etc.
|
||||
src.set_stat(UNCONSCIOUS)
|
||||
if (src.stunned > 0)
|
||||
AdjustStunned(-1)
|
||||
|
||||
Reference in New Issue
Block a user