Fix regenerative core only working below CRIT_THRESHOLD instead of at it (#43062)

This commit is contained in:
ShizCalev
2019-03-09 13:16:18 -08:00
committed by Tad Hardesty
parent 3f47e9a7ec
commit 9cd14eb021
@@ -63,7 +63,7 @@
/obj/item/organ/regenerative_core/on_life()
..()
if(owner.health < owner.crit_threshold)
if(owner.health <= owner.crit_threshold)
ui_action_click()
/obj/item/organ/regenerative_core/afterattack(atom/target, mob/user, proximity_flag)