diff options
author | megamage <none@none> | 2009-04-04 14:58:31 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-04-04 14:58:31 -0600 |
commit | 899a39ea1efcf69aa54dc58f5ec2e010dff9334c (patch) | |
tree | 3f9afcc1d6284a2e7d55d623adb6e8938b3a883c | |
parent | fc5da8a7bf72748d86e0cef024680b7290edb000 (diff) |
*Fix a bug that makes server cannot start up.
--HG--
branch : trunk
-rw-r--r-- | src/game/Object.cpp | 8 |
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) { |