| 414 | } |
| 415 | |
| 416 | void SystemObject::clientUpdate(float dt) { |
| 417 | m_netGroup.tickNetInterpolation(dt); |
| 418 | } |
| 419 | |
| 420 | void SystemObject::serverUpdate(SystemWorldServer* system, float dt) { |
| 421 | if (!m_config.permanent && m_spawnTime > 0.0 && system->time() > m_spawnTime + m_config.lifeTime) |
no test coverage detected