stop finding ways to centcom god damnit

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2729 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
quartz235@gmail.com
2011-12-18 04:17:21 +00:00
parent e381b3c3fe
commit b35ef49a09
2 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ var/list/sacrificed = list()
for(var/obj/effect/rune/R in world)
if(R == src)
continue
if(R.word1 == wordtravel && R.word2 == wordself && R.word3 == key)
if(R.word1 == wordtravel && R.word2 == wordself && R.word3 == key && R.z != 2)
index++
allrunesloc.len = index
allrunesloc[index] = R.loc
+7 -1
View File
@@ -137,11 +137,17 @@ var/ordernum=0
if((locate(/mob/living) in T)) return 0
if((locate(/obj/item/device/radio/beacon) in T)) return 0
if((locate(/obj/mecha) in T)) return 0
if((locate(/obj/structure/closet/body_bag) in T)) return 0
for(var/atom/ATM in T)
if((locate(/mob/living) in ATM)) return 0
if((locate(/obj/item/device/radio/beacon) in ATM)) return 0
if((locate(/obj/mecha ) in ATM)) return 0
if((locate(/obj/structure/closet/body_bag) in ATM)) return 0
for(var/atom/ATMM in ATM) // okay jesus christ how many recursive packaging options are we going to have guys come on - Quarxink
if((locate(/mob/living) in ATMM)) return 0
if((locate(/obj/item/device/radio/beacon) in ATMM)) return 0
if((locate(/obj/mecha ) in ATMM)) return 0
if((locate(/obj/structure/closet/body_bag) in ATMM)) return 0
return 1
/proc/sell_crates()