When I add a new proc to my interface like things I need to remember to actually update the rest of them, also a few runtime fixes.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2166 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
mport2004@gmail.com
2011-09-10 04:47:01 +00:00
parent de7e4f0de0
commit d95a351aba
6 changed files with 13 additions and 10 deletions

View File

@@ -19,18 +19,18 @@
start_state.count()
spawn (20)
var/turf/location = pick(blobstart)
blobs = list()
new /obj/blob(location)
location = pick(blobstart)
// if(!locate(/obj/blob in location))
// new/obj/blob(location)
..()
/datum/game_mode/blob/process()
if (prob(2))
if(prob(2))
spawn_meteors()
life()
stage()
@@ -122,7 +122,7 @@
/datum/game_mode/blob/check_finished()
if(stage >= 4)
if((stage >= 4)||(stage <= 1))
return 1
for(var/obj/blob/B in blobs)