Skip to content

Commit 239678d

Browse files
Synchronize changes from 1.6 master branch [ci skip]
c68f458 Revert PR #4184 and its failed hotfix (PR #4198)
2 parents c184e91 + c68f458 commit 239678d

File tree

2 files changed

+4
-15
lines changed

2 files changed

+4
-15
lines changed

Client/mods/deathmatch/logic/CClientStreamElement.cpp

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ void CClientStreamElement::InternalStreamIn(bool bInstantly)
6161
}
6262
}
6363

64-
void CClientStreamElement::InternalStreamOut(bool ignoreSendingEvent)
64+
void CClientStreamElement::InternalStreamOut()
6565
{
6666
if (m_bStreamedIn)
6767
{
@@ -83,24 +83,13 @@ void CClientStreamElement::InternalStreamOut(bool ignoreSendingEvent)
8383
}
8484
}
8585

86-
if (!ignoreSendingEvent)
87-
{
88-
CLuaArguments Arguments;
89-
CallEvent("onClientElementStreamOut", Arguments, true);
90-
}
86+
CLuaArguments Arguments;
87+
CallEvent("onClientElementStreamOut", Arguments, true);
9188
}
9289
}
9390

9491
void CClientStreamElement::NotifyCreate()
9592
{
96-
// If the dimensions are different, stream out and do not continue
97-
if (GetDimension() != -1 && GetDimension() != m_pStreamer->m_usDimension)
98-
{
99-
m_bStreamedIn = true; // InternalStreamOut need it
100-
InternalStreamOut(true);
101-
return;
102-
}
103-
10493
// Update common atrributes
10594
if (!m_bDoubleSidedInit)
10695
m_bDoubleSided = IsDoubleSided();

Client/mods/deathmatch/logic/CClientStreamElement.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class CClientStreamElement : public CClientEntity
3030
CClientStreamSector* GetStreamSector() { return m_pStreamSector; }
3131
bool IsStreamedIn() { return m_bStreamedIn; }
3232
void InternalStreamIn(bool bInstantly);
33-
void InternalStreamOut(bool ignoreSendingEvent = false);
33+
void InternalStreamOut();
3434
virtual void StreamIn(bool bInstantly) = 0;
3535
virtual void StreamOut() = 0;
3636
virtual void NotifyCreate();

0 commit comments

Comments
 (0)