Allow players to succumb when they aren't infected.
Benefits (How this will benefit the server and game as a whole):
No more staying in crit, and allowing yourself to properly die, preventing the medical staff from wasting their time.
Implementation (Optional, if you have an idea how to implement it):
Warning: dirty & written in notepad on a mobile phone.
Code: Select all
/mob/living/verb/succumb()
set hidden = 1
if (src.status_flags && (src.status_flags & XENO_HOST))
src << "\blue You can't succumb."
else if ((src.health < 0 && src.health > -95.0))
src.adjustOxyLoss(src.health + 200)
src.health = 100 - src.getOxyLoss() - src.getToxLoss() - src.getFireLoss() - src.getBruteLoss()
src << "\blue You have given up life and succumbed to death."
return