| 426 | } |
| 427 | |
| 428 | List<LightSource> Monster::lightSources() const { |
| 429 | auto lightSources = m_networkedAnimator.lightSources(position()); |
| 430 | lightSources.appendAll(m_statusController->lightSources()); |
| 431 | return lightSources; |
| 432 | } |
| 433 | |
| 434 | void Monster::hitOther(EntityId targetEntityId, DamageRequest const& damageRequest) { |
| 435 | if (inWorld() && isMaster()) |
no test coverage detected