mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-02-06 06:10:03 +00:00
20 lines
553 B
Plaintext
20 lines
553 B
Plaintext
//Terribly sorry for the code doubling, but things go derpy otherwise.
|
|
/obj/machinery/door/airlock/multi_tile
|
|
width = 2
|
|
|
|
/obj/machinery/door/airlock/multi_tile/New()
|
|
..()
|
|
switch(dir)
|
|
if(EAST, WEST)
|
|
bound_width = width * world.icon_size
|
|
bound_height = world.icon_size
|
|
else
|
|
bound_width = world.icon_size
|
|
bound_height = width * world.icon_size
|
|
|
|
/obj/machinery/door/airlock/multi_tile/glass
|
|
name = "Glass Airlock"
|
|
icon = 'icons/obj/doors/Door2x1glass.dmi'
|
|
opacity = 0
|
|
glass = 1
|
|
assembly_type = /obj/structure/door_assembly/multi_tile |