From a39df5843417e571a515dd3f54bedd949b5a7176 Mon Sep 17 00:00:00 2001 From: tralezab <40974010+tralezab@users.noreply.github.com> Date: Tue, 13 Apr 2021 05:58:34 -0700 Subject: [PATCH] fixes honorbound gods smiting under incorrect circumstances (#58343) --- code/datums/mutations/holy_mutation/honorbound.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/datums/mutations/holy_mutation/honorbound.dm b/code/datums/mutations/holy_mutation/honorbound.dm index 9b94e5d9204..f8237c478ac 100644 --- a/code/datums/mutations/holy_mutation/honorbound.dm +++ b/code/datums/mutations/holy_mutation/honorbound.dm @@ -184,6 +184,8 @@ */ /datum/mutation/human/honorbound/proc/punishment(mob/living/carbon/human/user, school) switch(school) + if(SCHOOL_HOLY, SCHOOL_MIME, SCHOOL_RESTORATION) + return if(SCHOOL_NECROMANCY, SCHOOL_FORBIDDEN) to_chat(user, "[GLOB.deity] is enraged by your use of forbidden magic!") lightningbolt(user)