MORE progress.

This commit is contained in:
Arokha Sieyes
2017-02-13 01:20:51 -05:00
parent 9817d67461
commit 41169628da
4 changed files with 97 additions and 48 deletions
+8 -1
View File
@@ -13,6 +13,8 @@ var/datum/controller/rogue/rm_controller = new()
//The current mining zone that the shuttle goes to and whatnot
var/area/current
var/debugging = 0
/datum/controller/rogue/New()
//How many zones are we working with here
for(var/area/asteroid/rogue/A in world)
@@ -23,4 +25,9 @@ var/datum/controller/rogue/rm_controller = new()
if(!manual) //If it was called manually somehow, then don't start the timer, just decay now.
spawn(RM_DIFF_DECAY_TIME)
decay()
return difficulty
return difficulty
/datum/controller/rogue/proc/dbg(var/message)
ASSERT(message) //I want a stack trace if there's no message
if(debugging)
world << "<span class='warning'>[message]</span>"