[MIRROR] multiple IDs should work (#11578)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-09-07 07:40:45 -07:00
committed by GitHub
parent a05bac2e8b
commit 2b286f1040
5 changed files with 0 additions and 13 deletions

View File

@@ -139,10 +139,8 @@
if(M.id == id)
if(M.density)
M.open()
return
else
M.close()
return
//CHOMP Add start
/obj/machinery/button/remote/blast_door/bear
@@ -190,7 +188,6 @@
for(var/obj/machinery/power/emitter/E in GLOB.machines)
if(E.id == id)
E.activate(user)
return
/*
Mass driver remote control
@@ -210,7 +207,6 @@
for(var/obj/machinery/door/blast/M in GLOB.machines)
if(M.id == id)
M.open()
return
addtimer(CALLBACK(src, PROC_REF(trigger_step_one)), 2 SECONDS, TIMER_DELETE_ME|TIMER_UNIQUE)
/obj/machinery/button/remote/driver/proc/trigger_step_one()
@@ -226,7 +222,6 @@
for(var/obj/machinery/door/blast/M in GLOB.machines)
if(M.id == id)
M.close()
return
active = FALSE
update_icon()

View File

@@ -145,4 +145,3 @@
for(var/obj/machinery/door/D in range(src,range))
if(D.icon_tinted && (D.id_tint == src.id || !D.id_tint))
D.toggle()
return

View File

@@ -77,6 +77,3 @@
for(var/obj/machinery/holosign/M in GLOB.machines)
if(M.id == id)
M.toggle()
return
return

View File

@@ -68,6 +68,3 @@
for(var/obj/machinery/neonsign/M in GLOB.machines)
if(M.id == id)
M.toggle()
return
return

View File

@@ -671,7 +671,6 @@
for(var/obj/structure/window/reinforced/polarized/W in range(src,range))
if (W.id == src.id || !W.id)
W.toggle()
return
/obj/machinery/button/windowtint/power_change()
..()