From 43104f882609cd23ca600209c0999b17d9bc13b2 Mon Sep 17 00:00:00 2001 From: Adrer Date: Wed, 31 Mar 2021 16:40:53 +0200 Subject: [PATCH] Charge check in area teleport to FALSE (#15775) Co-authored-by: adrermail@gmail.com --- code/datums/spells/area_teleport.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/spells/area_teleport.dm b/code/datums/spells/area_teleport.dm index 5986da3a412..b931bd9840f 100644 --- a/code/datums/spells/area_teleport.dm +++ b/code/datums/spells/area_teleport.dm @@ -11,7 +11,7 @@ /obj/effect/proc_holder/spell/targeted/area_teleport/perform(list/targets, recharge = 1, mob/living/user = usr) var/thearea = before_cast(targets) - if(!thearea || !cast_check(TRUE, FALSE, user)) + if(!thearea || !cast_check(FALSE, FALSE, user)) revert_cast() return invocation(thearea)