mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 14:39:58 +01:00
[MIRROR] The Wallening Approacheth: Adds directional variants to most wall mounts (#5551)
* The Wallening Approacheth: Adds directional variants to most wall mounts * Update reagent_dispenser.dm * Update CentCom_skyrat.dmm Co-authored-by: dragomagol <66640614+dragomagol@users.noreply.github.com> Co-authored-by: KathrinBailey <53862927+KathrinBailey@users.noreply.github.com> Co-authored-by: KathrinBailey <evesovereign@hotmail.co.uk>
This commit is contained in:
co-authored by
dragomagol
KathrinBailey
KathrinBailey
parent
6a5b6cbe42
commit
945bff2c10
@@ -22,6 +22,22 @@ GLOBAL_DATUM_INIT(keycard_events, /datum/events, new)
|
||||
var/mob/triggerer = null
|
||||
var/waiting = FALSE
|
||||
|
||||
/obj/machinery/keycard_auth/directional/north
|
||||
dir = SOUTH
|
||||
pixel_y = 26
|
||||
|
||||
/obj/machinery/keycard_auth/directional/south
|
||||
dir = NORTH
|
||||
pixel_y = -26
|
||||
|
||||
/obj/machinery/keycard_auth/directional/east
|
||||
dir = WEST
|
||||
pixel_x = 26
|
||||
|
||||
/obj/machinery/keycard_auth/directional/west
|
||||
dir = EAST
|
||||
pixel_x = -26
|
||||
|
||||
/obj/machinery/keycard_auth/Initialize()
|
||||
. = ..()
|
||||
ev = GLOB.keycard_events.addEvent("triggerEvent", CALLBACK(src, .proc/triggerEvent))
|
||||
|
||||
Reference in New Issue
Block a user