mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-26 07:39:27 +00:00
Merge pull request #553 from Azaezel/alpha40/nodelistnonull
sanity check nodelist presence
This commit is contained in:
commit
0287f7717b
1 changed files with 2 additions and 1 deletions
|
|
@ -79,7 +79,8 @@ void NodeListEvent::unpack(NetConnection* conn, BitStream* stream)
|
|||
stream->read(&mTotalNodes);
|
||||
stream->read(&mLocalListStart);
|
||||
|
||||
mNodeList->mId = mId;
|
||||
if (mNodeList)
|
||||
mNodeList->mId = mId;
|
||||
|
||||
// NOTE: Child class needs to populate the local node list
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue