-Small fix for meteor spawns

-Color-coded escape shuttle doors appropriately

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4112 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
ericgfwong@hotmail.com
2012-07-19 15:40:12 +00:00
parent 531bd3c908
commit 4f108d520d
2 changed files with 9 additions and 9 deletions
+7 -7
View File
@@ -39,21 +39,21 @@
starty = world.maxy-8
startx = rand(8, world.maxx-8)
endy = 8
endx = rand(1, world.maxx-8)
endx = rand(8, world.maxx-8)
if(2) //EAST
starty = rand(1,world.maxy-8)
starty = rand(8,world.maxy-8)
startx = world.maxx-8
endy = rand(1, world.maxy-8)
endy = rand(8, world.maxy-8)
endx = 8
if(3) //SOUTH
starty = 8
startx = rand(1, world.maxx-8)
startx = rand(8, world.maxx-8)
endy = world.maxy-8
endx = rand(1, world.maxx-8)
endx = rand(8, world.maxx-8)
if(4) //WEST
starty = rand(1, world.maxy-8)
starty = rand(8, world.maxy-8)
startx = 8
endy = rand(1,world.maxy-8)
endy = rand(8,world.maxy-8)
endx = world.maxx-8
pickedstart = locate(startx, starty, 1)