Files
Paradise/code/modules/ruins/objects_and_mobs/secure_alien_airlock.dm
MixityMaxity 9b570fc75c Wallening Mapping QoL (#31956)
* manual rotation vars and subtypes

* hacky (?) spawner fix

* light map fixes

* linter
2026-05-13 22:10:25 +00:00

19 lines
535 B
Plaintext

/obj/machinery/door/airlock/abductor/secure
security_level = 6
autoclose = FALSE
flags = INDESTRUCTIBLE
locked = TRUE
req_access = list()
/obj/machinery/door/airlock/abductor/secure/manual_rotation
manual_dir = TRUE
/obj/machinery/door/airlock/abductor/secure/Initialize(mapload)
. = ..()
// Randomize the wires so they aren't the same as the station
wires.randomize()
/// Always returns false since you aren't supposed to open it normally
/obj/machinery/door/airlock/abductor/secure/check_access(obj/item/I)
return FALSE