From e685dfbe707869efc6ba8ad5747da3cd35f831ff Mon Sep 17 00:00:00 2001 From: OrionTheFox <76465278+OrionTheFox@users.noreply.github.com> Date: Wed, 18 Jan 2023 06:31:10 -0700 Subject: [PATCH] [MISSED MIRROR] Fixes Honorbound Sect not correctly granting the 'Declare Evil' spell (#18803) fixed --- code/modules/religion/honorbound/honorbound_trauma.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/religion/honorbound/honorbound_trauma.dm b/code/modules/religion/honorbound/honorbound_trauma.dm index 66aed0514ac..0dfeab4479d 100644 --- a/code/modules/religion/honorbound/honorbound_trauma.dm +++ b/code/modules/religion/honorbound/honorbound_trauma.dm @@ -24,8 +24,8 @@ //signal that checks for dishonorable attacks RegisterSignal(owner, COMSIG_MOB_CLICKON, PROC_REF(attack_honor)) - var/datum/action/cooldown/spell/pointed/declare_evil = new(src) - declare_evil.Grant(owner) + var/datum/action/cooldown/spell/pointed/declare_evil/declare = new(src) + declare.Grant(owner) return ..() /datum/brain_trauma/special/honorbound/on_lose(silent)