mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-24 05:23:22 +01:00
Fix changeling sting forensics + laser AB (#9057)
This commit is contained in:
@@ -458,7 +458,7 @@ This function completely restores a damaged organ to perfect condition.
|
||||
//moved this before the open_wound check so that having many small wounds for example doesn't somehow protect you from taking internal damage (because of the return)
|
||||
//Possibly trigger an internal wound, too.
|
||||
var/local_damage = brute_dam + burn_dam + damage
|
||||
if(damage > 15 && type != BURN && local_damage > 30 && !(status & ORGAN_ROBOT))
|
||||
if(damage > 15 && !(type in list(BURN, LASER)) && local_damage > 30 && !(status & ORGAN_ROBOT))
|
||||
var/internal_damage
|
||||
if(prob(damage) && sever_artery())
|
||||
internal_damage = TRUE
|
||||
|
||||
Reference in New Issue
Block a user