[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:
SkyratBot
2021-05-08 14:46:01 +01:00
committed by GitHub
co-authored by dragomagol KathrinBailey KathrinBailey
parent 6a5b6cbe42
commit 945bff2c10
24 changed files with 4356 additions and 4451 deletions
@@ -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))