From c9213368492d4f5bd41cd42bc3d1a4d19dabdb0c Mon Sep 17 00:00:00 2001 From: Erthilo Date: Fri, 1 Jun 2012 03:29:24 +0100 Subject: [PATCH] Readded spawn(0) and fixed a silly comment. --- code/game/jobs/access.dm | 2 +- code/modules/power/singularity/singularity.dm | 21 ++++++++++--------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/code/game/jobs/access.dm b/code/game/jobs/access.dm index cf80b5ec1d..be95effa81 100644 --- a/code/game/jobs/access.dm +++ b/code/game/jobs/access.dm @@ -63,7 +63,7 @@ //BEGIN CENTCOM ACCESS /*Should leave plenty of room if we need to add more access levels. -/var/const/Mostly for admin fun times.*/ + Mostly for admin fun times.*/ /var/const/access_cent_general = 101//General facilities. /var/const/access_cent_thunder = 102//Thunderdome. /var/const/access_cent_specops = 103//Special Ops. diff --git a/code/modules/power/singularity/singularity.dm b/code/modules/power/singularity/singularity.dm index 7e30a526f1..6db291a24c 100644 --- a/code/modules/power/singularity/singularity.dm +++ b/code/modules/power/singularity/singularity.dm @@ -95,16 +95,17 @@ var/global/list/uneatable = list( process() - eat() - dissipate() - check_energy() - if(current_size >= 3) - move() - if(current_size <= 7) - pulse() - if(current_size >= 5) - if(prob(event_chance))//Chance for it to run a special event TODO:Come up with one or two more that fit - event() + spawn(0) + eat() + dissipate() + check_energy() + if(current_size >= 3) + move() + if(current_size <= 7) + pulse() + if(current_size >= 5) + if(prob(event_chance))//Chance for it to run a special event TODO:Come up with one or two more that fit + event() return