Derelict added to ghost teleport list.

Various minor fixes to the map.

Minor changelog fix.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@446 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
crazyclonetheninja
2010-11-18 00:52:16 +00:00
parent c645018a8b
commit 14ae414cef
3 changed files with 3668 additions and 3660 deletions

View File

@@ -87,7 +87,7 @@
usr.verbs -= /mob/dead/observer/proc/dead_tele
spawn(50)
usr.verbs += /mob/dead/observer/proc/dead_tele
A = input("Area to jump to", "BOOYEA", A) in list("Engine","Hallways","Toxins","Storage","Maintenance","Crew Quarters","Medical","Security","Chapel","Bridge","AI Satellite","Thunderdome")
A = input("Area to jump to", "BOOYEA", A) in list("Engine","Hallways","Toxins","Storage","Maintenance","Crew Quarters","Medical","Security","Chapel","Bridge","AI Satellite","Thunderdome","Derelict")
switch (A)
if ("Engine")
@@ -162,6 +162,12 @@
if(istype(B, /area/tdome))
L += B
A = pick(L)
if ("Derelict")
var/list/L = list()
for(var/area/B in world)
if(istype(B, /area/derelict))
L += B
A = pick(L)
var/list/L = list()
for(var/turf/T in A)