Skip to content

Commit

Permalink
Fix Border Firelocks Not Stopping Movement Out Of Their Turf (#493)
Browse files Browse the repository at this point in the history
  • Loading branch information
RimiNosha authored Dec 22, 2023
1 parent d92c604 commit a9e6f79
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion code/game/machinery/doors/firedoor.dm
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,10 @@

/obj/machinery/door/firedoor/border_only/Initialize(mapload)
. = ..()
RegisterSignal(src, COMSIG_ATOM_EXIT, PROC_REF(on_exit))
var/static/list/loc_connections = list(
COMSIG_ATOM_EXIT = PROC_REF(on_exit),
)
AddElement(/datum/element/connect_loc, loc_connections)

/obj/machinery/door/firedoor/border_only/closed
icon_state = "door_closed"
Expand Down

0 comments on commit a9e6f79

Please sign in to comment.