mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-18 18:44:48 +01:00
9b570fc75c
* manual rotation vars and subtypes * hacky (?) spawner fix * light map fixes * linter
19 lines
535 B
Plaintext
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
|