From 4f6edb9452a0ff851e6016b981bdad049504ecd2 Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Fri, 6 Feb 2026 15:57:09 +0100 Subject: [PATCH] fix windows resettting their init flag mid init (#19148) --- code/game/objects/structures/window.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index 88b2eae2e0e..e4c3dcebd0e 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -449,7 +449,7 @@ icon_state = "[basestate]" return else - flags = NONE // Removes ON_BORDER and OPPOSITE_OPACITY + flags &= ~ON_BORDER // Removes ON_BORDER var/list/dirs = list() if(anchored) for(var/obj/structure/window/W in orange(src,1))