From d3385fb8c840fdb05d4b1b9e966a23c10a55222f Mon Sep 17 00:00:00 2001 From: Seris02 <49109742+Seris02@users.noreply.github.com> Date: Thu, 27 Feb 2020 21:03:50 +0800 Subject: [PATCH] yeet 3 --- code/datums/mutations/body.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/datums/mutations/body.dm b/code/datums/mutations/body.dm index 144936ab95..83b78b88eb 100644 --- a/code/datums/mutations/body.dm +++ b/code/datums/mutations/body.dm @@ -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) \ No newline at end of file + if (owner) + owner.remove_status_effect(STATUS_EFFECT_SPASMS)