Skip to content

Commit 0c2433c

Browse files
committed
Use actual type names in recent changes
Addendum for commit f0afa3c, d14f490
1 parent 0c1e286 commit 0c2433c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Client/mods/deathmatch/logic/CClientEntity.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ void CClientEntity::CallEventNoParent(const char* szName, const CLuaArguments& A
791791
// Call it on all our children
792792
if (!m_Children.empty())
793793
{
794-
auto pChildrenSnapshot = GetChildrenListSnapshot();
794+
CElementListSnapshotRef pChildrenSnapshot = GetChildrenListSnapshot();
795795
for (CClientEntity* pEntity : *pChildrenSnapshot)
796796
{
797797
if (!pEntity->IsBeingDeleted())

Server/mods/deathmatch/logic/CElement.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,7 @@ void CElement::CallEventNoParent(const char* szName, const CLuaArguments& Argume
10191019
}
10201020

10211021
// Call it on all our children
1022-
auto* childrenList = GetChildrenListSnapshot();
1022+
CElementListSnapshotRef childrenList = GetChildrenListSnapshot();
10231023
for (CElement* pElement : *childrenList)
10241024
{
10251025
if (!pElement->IsBeingDeleted())

0 commit comments

Comments
 (0)