From a1e5d9b04eafae12d845d87488dbc0060f34657d Mon Sep 17 00:00:00 2001 From: Nico <122193236+Nico8340@users.noreply.github.com> Date: Mon, 5 May 2025 15:13:29 +0200 Subject: [PATCH] Fix --- 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 fe48a73a0db..1aa69b47683 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() != m_pStreamer->m_usDimension) + if (GetDimension() != -1 && GetDimension() != m_pStreamer->m_usDimension) { m_bStreamedIn = true; // InternalStreamOut need it InternalStreamOut(true);