Changes relatives paths into absolute paths and makes some if()'s better

This commit is contained in:
Firecage
2016-01-17 01:36:56 +02:00
parent e5a6113157
commit 754491ce4c
69 changed files with 1294 additions and 857 deletions
@@ -61,8 +61,10 @@ It is possible to destroy the net by the occupant or someone else.
health = INFINITY//Make the net invincible so that an explosion/something else won't kill it while, spawn() is running.
for(var/obj/item/W in M)
if(istype(M,/mob/living/carbon/human))
if(W==M:w_uniform) continue//So all they're left with are shoes and uniform.
if(W==M:shoes) continue
if(W==M:w_uniform)
continue//So all they're left with are shoes and uniform.
if(W==M:shoes)
continue
M.unEquip(W)
spawn(0)