From 8bbcd009f939cb826e3440509d0e28376376ff77 Mon Sep 17 00:00:00 2001 From: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Date: Fri, 8 Jul 2022 20:53:35 -0500 Subject: [PATCH] Fixes Bolts of Necropotence (#68260) Fixes necropotence due to a copy and paste error. --- code/modules/spells/spell_types/self/soultap.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/spells/spell_types/self/soultap.dm b/code/modules/spells/spell_types/self/soultap.dm index 57932ad8288..db39a0616a0 100644 --- a/code/modules/spells/spell_types/self/soultap.dm +++ b/code/modules/spells/spell_types/self/soultap.dm @@ -36,7 +36,7 @@ return TRUE /datum/action/cooldown/spell/tap/is_valid_target(atom/cast_on) - return isliving(cast_on) && !HAS_TRAIT(owner, TRAIT_NO_SOUL) + return isliving(cast_on) && !HAS_TRAIT(cast_on, TRAIT_NO_SOUL) /datum/action/cooldown/spell/tap/cast(mob/living/cast_on) . = ..()