File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Client/mods/deathmatch/logic Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ void CClientStreamer::SetDimension(unsigned short usDimension)
163
163
{
164
164
CClientStreamElement* element = *iter;
165
165
166
- if (IsElementShouldVisibleInCurrentDimesnion (element))
166
+ if (ShouldElementBeVisibleInCurrentDimension (element))
167
167
iter++;
168
168
else
169
169
{
@@ -322,7 +322,7 @@ void CClientStreamer::RemoveElementFromSectors(CClientStreamElement* pElement)
322
322
323
323
void CClientStreamer::AddElement (CClientStreamElement* pElement)
324
324
{
325
- if (IsElementShouldVisibleInCurrentDimesnion (pElement))
325
+ if (ShouldElementBeVisibleInCurrentDimension (pElement))
326
326
AddElementInSectors (pElement);
327
327
else
328
328
m_outsideCurrentDimensionElements.push_back (pElement);
@@ -744,7 +744,7 @@ void CClientStreamer::OnElementForceStreamOut(CClientStreamElement* pElement)
744
744
745
745
void CClientStreamer::OnElementDimension (CClientStreamElement* pElement)
746
746
{
747
- if (IsElementShouldVisibleInCurrentDimesnion (pElement))
747
+ if (ShouldElementBeVisibleInCurrentDimension (pElement))
748
748
{
749
749
if (!pElement->GetStreamSector ())
750
750
{
You can’t perform that action at this time.
0 commit comments