diff --git a/code/modules/turbolift/turbolift_door.dm b/code/modules/turbolift/turbolift_door.dm index a1ce40d219a..d5cef8598a5 100644 --- a/code/modules/turbolift/turbolift_door.dm +++ b/code/modules/turbolift/turbolift_door.dm @@ -2,14 +2,12 @@ name = "Elevator Door" desc = "Ding." req_access = list(access_maint_tunnels) - opacity = 0 - autoclose = 0 - glass = 1 + autoclose = FALSE icon = 'icons/obj/doors/doorlift.dmi' assembly_type = /obj/structure/door_assembly/door_assembly_lift - hashatch = 0 + hashatch = FALSE panel_visible_while_open = TRUE - insecure = 0 + insecure = FALSE var/datum/turbolift/lift var/datum/turbolift_floor/floor diff --git a/html/changelogs/geeves-opaque_elevator_doors.yml b/html/changelogs/geeves-opaque_elevator_doors.yml new file mode 100644 index 00000000000..c14e76904de --- /dev/null +++ b/html/changelogs/geeves-opaque_elevator_doors.yml @@ -0,0 +1,6 @@ +author: Geeves + +delete-after: True + +changes: + - tweak: "Elevator doors are now opaque and laser shots will not pass through them." \ No newline at end of file diff --git a/icons/obj/doors/doorlift.dmi b/icons/obj/doors/doorlift.dmi index d5919f1b310..9f3466a5efd 100644 Binary files a/icons/obj/doors/doorlift.dmi and b/icons/obj/doors/doorlift.dmi differ