A little bit more away mission work. It should technically be playable.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4663 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
petethegoat@gmail.com
2012-09-09 01:29:05 +00:00
parent d6db93bd38
commit 8a7e4e4ed5
3 changed files with 4 additions and 2 deletions

View File

@@ -168,4 +168,6 @@
else else
teleatom.visible_message("\red <B>The [teleatom] bounces off of the portal!</B>") teleatom.visible_message("\red <B>The [teleatom] bounces off of the portal!</B>")
return 0 return 0
if(destination.z > 7)
return 0
return 1 return 1

View File

@@ -51,7 +51,7 @@ datum/objective/assassinate
check_completion() check_completion()
if(target && target.current) if(target && target.current)
if(target.current.stat == DEAD || issilicon(target.current) || isbrain(target.current)) //Borgs/brains/AIs count as dead for traitor objectives. --NeoFite if(target.current.stat == DEAD || issilicon(target.current) || isbrain(target.current) || target.current.z > 7) //Borgs/brains/AIs count as dead for traitor objectives. --NeoFite
return 1 return 1
return 0 return 0
return 1 return 1

View File

@@ -66,7 +66,7 @@
var/turf/T = get_turf(R) var/turf/T = get_turf(R)
if (!T) if (!T)
continue continue
if(T.z == 2) if(T.z == 2 || T.z > 7)
continue continue
var/tmpname = T.loc.name var/tmpname = T.loc.name
if(areaindex[tmpname]) if(areaindex[tmpname])