From 2a5a66c4d8d26dec78c0c95aefe0f1d5ae2983b2 Mon Sep 17 00:00:00 2001 From: Archie Date: Mon, 14 Jun 2021 01:08:00 -0300 Subject: [PATCH] Proper returns for the mimic event --- hyperstation/code/mobs/mimic.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hyperstation/code/mobs/mimic.dm b/hyperstation/code/mobs/mimic.dm index 082d7d5e..0723949a 100644 --- a/hyperstation/code/mobs/mimic.dm +++ b/hyperstation/code/mobs/mimic.dm @@ -299,7 +299,7 @@ if(!eligible_areas.len) message_admins("No eligible areas for spawning mimics.") - return FALSE + return WAITING_FOR_SOMETHING notify_ghosts("A group of mimics has spawned in [pickedArea]!", source=pickedArea, action=NOTIFY_ATTACK, flashwindow = FALSE) while(spawncount >= 1 && validTurfs.len) @@ -307,3 +307,4 @@ var/spawn_type = /mob/living/simple_animal/hostile/hs13mimic spawn_atom_to_turf(spawn_type, pickedTurf, 1, FALSE) spawncount-- + return SUCCESSFUL_SPAWN