Species shock vulnerability is now handled with a getter.

This commit is contained in:
MistakeNot4892
2023-08-14 15:55:20 +01:00
committed by spookerton
parent 973b8a8968
commit 16ef531c64
17 changed files with 23 additions and 20 deletions
@@ -116,7 +116,7 @@
if(ishuman(M))
var/mob/living/carbon/human/H = M
if(H.species.siemens_coefficient<0.5) //Thick skin.
if(H.species.get_siemens_coefficient(H) < 0.5) //Thick skin.
return
if( H.shoes || ( H.wear_suit && (H.wear_suit.body_parts_covered & FEET) ) )
+1 -1
View File
@@ -357,7 +357,7 @@
if(ishuman(L))
var/mob/living/carbon/human/H = L
if(H.species.siemens_coefficient<0.5) //Thick skin.
if(H.species.get_siemens_coefficient(H) < 0.5) //Thick skin.
return
if( H.shoes || ( H.wear_suit && (H.wear_suit.body_parts_covered & FEET) ) )