Changed: Better checks

--HG--
branch : develop
This commit is contained in:
kervala 2016-06-11 20:49:28 +02:00
parent 0c2535c4a0
commit b547861532

View file

@ -354,15 +354,11 @@ public:
if ( entity.AssociationBitsSent == currentAssociationBits )
{
//nlassertex(entity.Used, ("client=%d, entity=%d property=%d", clientId, entityId, property));
if (property == CLFECOMMON::PROPERTY_DISASSOCIATION)
{
// don't do anything
}
else if (property == CLFECOMMON::PROPERTY_POSITION)
if (property == CLFECOMMON::PROPERTY_POSITION)
{
entity.Mileage = 0;
}
else
else if (property != CLFECOMMON::PROPERTY_DISASSOCIATION)
{
CPropertyEntry &entry = entity.Properties[property];
entry.HasValue = false;