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);