mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user