mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-03 05:52:43 +00:00
Vore Updates and merges
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
return QDEL_HINT_QUEUE
|
||||
|
||||
/mob/Destroy()
|
||||
qdel_null(shadow)
|
||||
QDEL_NULL(shadow)
|
||||
. = ..()
|
||||
|
||||
/mob/zshadow/examine(mob/user, distance, infix, suffix)
|
||||
|
||||
Reference in New Issue
Block a user