From 353051bce7ff602811a5a2afb0ff8093138c1dfe Mon Sep 17 00:00:00 2001 From: Seris02 <49109742+Seris02@users.noreply.github.com> Date: Sun, 10 Oct 2021 22:28:30 +0800 Subject: [PATCH] fixes a runtime (#8737) --- .../code/modules/spells/spells_types/snapceleritas.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_skyrat/modules/morewizardstuffs/code/modules/spells/spells_types/snapceleritas.dm b/modular_skyrat/modules/morewizardstuffs/code/modules/spells/spells_types/snapceleritas.dm index ac4c7dd0876..d58af07e3f7 100644 --- a/modular_skyrat/modules/morewizardstuffs/code/modules/spells/spells_types/snapceleritas.dm +++ b/modular_skyrat/modules/morewizardstuffs/code/modules/spells/spells_types/snapceleritas.dm @@ -19,8 +19,8 @@ new /obj/effect/temp_visual/small_smoke/halfsecond(user.drop_location()) new /obj/effect/temp_visual/small_smoke/halfsecond(targeted_turf) - do_teleport(user, targeted_turf, 0, TRUE, no_effects = TRUE, channel = TELEPORT_CHANNEL_MAGIC) - do_teleport(target, user_turf, 0, TRUE, no_effects = TRUE, channel= TELEPORT_CHANNEL_MAGIC) + do_teleport(user, targeted_turf, 0, no_effects = TRUE, channel = TELEPORT_CHANNEL_MAGIC) + do_teleport(target, user_turf, 0, no_effects = TRUE, channel= TELEPORT_CHANNEL_MAGIC) /obj/effect/proc_holder/spell/pointed/celeritas/can_target(atom/target, mob/user, silent)