netObject classvar cleanups

This commit is contained in:
Azaezel 2018-03-13 21:27:31 -05:00
parent f0e5fddde8
commit 53869600cc
5 changed files with 29 additions and 29 deletions

View file

@ -331,9 +331,9 @@ void afxChoreographer::unpack_constraint_info(NetConnection* conn, BitStream* st
{
if (stream->readFlag())
{
U16 scope_id = stream->readInt(NetObject::SCOPE_ID_BITS);
mScope_id = stream->readInt(NetObject::SCOPE_ID_BITS);
bool is_shape = stream->readFlag();
addObjectConstraint(scope_id, cons_name, is_shape);
addObjectConstraint(mScope_id, cons_name, is_shape);
}
}
}