mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Turns out the damage limit is at 30
Check https://github.com/CHOMPStation2/CHOMPStation2/blob/master/code/modules/organs/organ_external.dm#L429 & https://github.com/CHOMPStation2/CHOMPStation2/blob/master/code/modules/organs/organ_external.dm#L12 for confirmation.
This commit is contained in:
@@ -119,7 +119,7 @@
|
||||
var/obj/item/organ/external/EO = eo
|
||||
for(var/w in EO.wounds)
|
||||
var/datum/wound/W = w
|
||||
if(W.damage <= 25)
|
||||
if(W.damage <= 30)
|
||||
W.heal_damage(0.1)
|
||||
EO.update_damages()
|
||||
if(EO.update_icon())
|
||||
|
||||
Reference in New Issue
Block a user