Bandaid for overly fragile hardsuits.

This commit is contained in:
Zuhayr
2014-07-01 07:47:49 +09:30
parent 4d8c6bf9e9
commit d30457b97c

View File

@@ -308,6 +308,6 @@ emp_act
if(damtype != BURN && damtype != BRUTE) return
var/obj/item/clothing/suit/space/SS = wear_suit
var/penetrated_dam = max(0,(damage - max(0,(SS.breach_threshold - SS.damage))))
var/penetrated_dam = max(0,(damage - SS.breach_threshold)) // - SS.damage)) - Consider uncommenting this if suits seem too hardy on dev.
if(penetrated_dam) SS.create_breaches(damtype, penetrated_dam)