aboutsummaryrefslogtreecommitdiff
path: root/src/game/Object.cpp
diff options
context:
space:
mode:
authormegamage <none@none>2009-04-04 14:58:31 -0600
committermegamage <none@none>2009-04-04 14:58:31 -0600
commit899a39ea1efcf69aa54dc58f5ec2e010dff9334c (patch)
tree3f9afcc1d6284a2e7d55d623adb6e8938b3a883c /src/game/Object.cpp
parentfc5da8a7bf72748d86e0cef024680b7290edb000 (diff)
*Fix a bug that makes server cannot start up.
--HG-- branch : trunk
Diffstat (limited to 'src/game/Object.cpp')
-rw-r--r--src/game/Object.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/Object.cpp b/src/game/Object.cpp
index 5efc7553574..0d53cfc4ab7 100644
--- a/src/game/Object.cpp
+++ b/src/game/Object.cpp
@@ -753,8 +753,8 @@ void Object::ClearUpdateMask(bool remove)
return;
}
- assert(m_uint32Values[0]);
- assert(m_uint32Values_mirror[0]);
+ m_uint32Values[0];
+ m_uint32Values_mirror[0];
for( uint16 index = 0; index < m_valuesCount; index ++ )
{
@@ -810,8 +810,8 @@ void Object::_SetUpdateBits(UpdateMask *updateMask, Player* /*target*/) const
return;
}
- assert(m_uint32Values[0]);
- assert(m_uint32Values_mirror[0]);
+ m_uint32Values[0];
+ m_uint32Values_mirror[0];
for(uint16 index = 0; index < m_valuesCount; ++index)
{