From 05ca2c589a77e46606a2315bad7f7b8e072fd7c3 Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Fri, 6 Feb 2026 08:11:57 -0700 Subject: [PATCH] [MIRROR] fix windows resetting their init flag mid init (#12382) Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> --- 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 daddfa4973..d4f490f488 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -454,7 +454,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))