This commit is contained in:
Seris02
2020-02-27 21:03:50 +08:00
committed by GitHub
parent a14fe06241
commit d3385fb8c8
+4 -2
View File
@@ -357,9 +357,11 @@
/datum/mutation/human/spastic/on_acquiring()
if(..())
return
owner.apply_status_effect(STATUS_EFFECT_SPASMS)
if (owner)
owner.apply_status_effect(STATUS_EFFECT_SPASMS)
/datum/mutation/human/spastic/on_losing()
if(..())
return
owner.remove_status_effect(STATUS_EFFECT_SPASMS)
if (owner)
owner.remove_status_effect(STATUS_EFFECT_SPASMS)