From 1aa85b6f10ce2117530550f83da7d04f308cf320 Mon Sep 17 00:00:00 2001 From: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Date: Thu, 29 Sep 2022 13:46:02 -0400 Subject: [PATCH] Makes wizard event not run when it isnt supposed to (#70178) fix: Wizard's anonymous event won't run near the start of a round anymore. --- code/modules/events/wizard/identity_spoof.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/events/wizard/identity_spoof.dm b/code/modules/events/wizard/identity_spoof.dm index dc6975eef12..10519e9dcd7 100644 --- a/code/modules/events/wizard/identity_spoof.dm +++ b/code/modules/events/wizard/identity_spoof.dm @@ -7,7 +7,7 @@ /datum/round_event_control/wizard/identity_spoof/can_spawn_event(players_amt) . = ..() - if(.) + if(!.) return . if(GLOB.current_anonymous_theme) //already anonymous, ABORT ABORT