Vore Updates and merges

This commit is contained in:
Hawk_v3
2018-10-03 18:25:39 +01:00
1386 changed files with 634283 additions and 89661 deletions

View File

@@ -110,7 +110,7 @@
/obj/structure/hoist/Destroy()
if(hoistee)
release_hoistee()
qdel_null(src.source_hook)
QDEL_NULL(src.source_hook)
return ..()
/obj/effect/hoist_hook/Destroy()
@@ -139,7 +139,7 @@
desc += " It looks broken, and the clamp has retracted back into the hoist. Seems like you'd have to re-deploy it to get it to work again."
if(hoistee)
release_hoistee()
qdel_null(source_hook)
QDEL_NULL(source_hook)
/obj/structure/hoist/ex_act(severity)
switch(severity)

View File

@@ -21,7 +21,7 @@
created_name = t
return
if(istype(W, /obj/item/weapon/wrench))
if(W.is_wrench())
switch(state)
if(CONSTRUCTION_UNANCHORED)
state = CONSTRUCTION_WRENCHED

View File

@@ -173,6 +173,9 @@
if(!below)
return
if(istype(below, /turf/space))
return
var/turf/T = loc
if(!T.CanZPass(src, DOWN) || !below.CanZPass(src, DOWN))
return

View File

@@ -29,7 +29,7 @@
return QDEL_HINT_QUEUE
/mob/Destroy()
qdel_null(shadow)
QDEL_NULL(shadow)
. = ..()
/mob/zshadow/examine(mob/user, distance, infix, suffix)