From c7c3efb5d058bb4c9afc6966e37bea1de52a243e Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Thu, 4 Jun 2015 05:43:57 -0400 Subject: [PATCH] Lets not spawn infinite meteors. --- code/game/gamemodes/meteor/meteor.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/gamemodes/meteor/meteor.dm b/code/game/gamemodes/meteor/meteor.dm index cfb6d4c0392..57a1e29c36e 100644 --- a/code/game/gamemodes/meteor/meteor.dm +++ b/code/game/gamemodes/meteor/meteor.dm @@ -35,6 +35,7 @@ var/waveduration = world.timeofday + rand(3000,9000) var/waitduration = rand(3000,9000) while(waveduration - world.timeofday > 0) + sleep(20) spawn() spawn_meteors(6) spawn(waitduration) nometeors = 0