mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
[MIRROR] Fixes lateload map template cable loading (#9851)
Co-authored-by: Cameron Lennox <killer65311@gmail.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
c1cd7dc3f0
commit
f19a517d0f
@@ -15,7 +15,7 @@
|
||||
var/list/blend_objects = null // Objects which to blend with //CHOMPEdit default null
|
||||
var/list/noblend_objects = null //Objects to avoid blending with (such as children of listed blend objects. //CHOMPEdit default null
|
||||
|
||||
/obj/structure/Initialize()
|
||||
/obj/structure/Initialize(mapload)
|
||||
. = ..()
|
||||
if(climbable)
|
||||
verbs += /obj/structure/proc/climb_on
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
activated = 1
|
||||
for(var/obj/effect/wingrille_spawn/other in neighbours)
|
||||
if(!other.activated) other.activate()
|
||||
if((flags & ATOM_INITIALIZED) && !QDELETED(src)) //CHOMPEdit
|
||||
if((flags & ATOM_INITIALIZED) && !QDELETED(src))
|
||||
qdel(src)
|
||||
|
||||
/obj/effect/wingrille_spawn/proc/handle_window_spawn(var/obj/structure/window/W)
|
||||
|
||||
Reference in New Issue
Block a user