From bd08b0c39d9603ea789d15dbfd084666516fa0d1 Mon Sep 17 00:00:00 2001 From: NepDisk Date: Sun, 19 Oct 2025 18:18:34 -0400 Subject: [PATCH] Revert "Don't draw the sky if we aren't supposed to" This reverts commit 858fb1c916311dab4a4aa0b77e3bf466dd11f6cb. --- src/r_plane.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/r_plane.cpp b/src/r_plane.cpp index a9f6854ea..f1dc3a552 100644 --- a/src/r_plane.cpp +++ b/src/r_plane.cpp @@ -759,13 +759,6 @@ void R_DrawSkyPlanes(void) ZoneScoped; - // If we're not supposed to draw the sky (e.g. for skyboxes), don't do anything! - // This probably utterly ruins sky rendering for FOFs and polyobjects, unfortunately - if (!newview->sky) - { - return; - } - srb2::ThreadPool::Sema tp_sema; srb2::g_main_threadpool->begin_sema(); for (i = 0; i < MAXVISPLANES; i++, pl++)