From 84a6624b03a463b8b1071cbedd61c10236d51850 Mon Sep 17 00:00:00 2001 From: Letter N <24603524+LetterN@users.noreply.github.com> Date: Thu, 1 Oct 2020 18:18:24 +0800 Subject: [PATCH] Update cinematic.dm --- code/datums/cinematic.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/datums/cinematic.dm b/code/datums/cinematic.dm index bc655dd857..7b5556ac02 100644 --- a/code/datums/cinematic.dm +++ b/code/datums/cinematic.dm @@ -30,7 +30,7 @@ /datum/cinematic var/id = CINEMATIC_DEFAULT var/list/watching = list() //List of clients watching this - var/list/locked = list() //Who had notransform set during the cinematic + var/list/locked = list() //Who had mob_transforming set during the cinematic var/is_global = FALSE //Global cinematics will override mob-specific ones var/obj/screen/cinematic/screen var/datum/callback/special_callback //For special effects synced with animation (explosions after the countdown etc) @@ -54,7 +54,7 @@ if(!MM) continue var/mob/M = MM - M.notransform = FALSE + M.mob_transforming = FALSE locked = null return ..() @@ -103,9 +103,9 @@ /datum/cinematic/proc/show_to(mob/M, client/C) //SIGNAL_HANDLER //must not wait. - if(!M.notransform) + if(!M.mob_transforming) locked += M - M.notransform = TRUE //Should this be done for non-global cinematics or even at all ? + M.mob_transforming = TRUE //Should this be done for non-global cinematics or even at all ? if(!C) return watching += C