From 7b84aac9027e26426d80b6773205cfe8a3049a70 Mon Sep 17 00:00:00 2001 From: TEDERIs Date: Mon, 5 May 2025 21:29:38 +0700 Subject: [PATCH] Revert "Fix dimension -1 after #4184 (#4198)" This reverts commit d88f667fd48f83242f706a6590f49cf36b126ff5. --- Client/mods/deathmatch/logic/CClientStreamElement.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Client/mods/deathmatch/logic/CClientStreamElement.cpp b/Client/mods/deathmatch/logic/CClientStreamElement.cpp index 1aa69b47683..fe48a73a0db 100644 --- a/Client/mods/deathmatch/logic/CClientStreamElement.cpp +++ b/Client/mods/deathmatch/logic/CClientStreamElement.cpp @@ -94,7 +94,7 @@ void CClientStreamElement::InternalStreamOut(bool ignoreSendingEvent) void CClientStreamElement::NotifyCreate() { // If the dimensions are different, stream out and do not continue - if (GetDimension() != -1 && GetDimension() != m_pStreamer->m_usDimension) + if (GetDimension() != m_pStreamer->m_usDimension) { m_bStreamedIn = true; // InternalStreamOut need it InternalStreamOut(true);