mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-12 07:33:34 +01:00
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:
@@ -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
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user