| 525 | } |
| 526 | |
| 527 | List<DamageNotification> Player::applyDamage(DamageRequest const& request) { |
| 528 | if (!inWorld() || isDead() || m_isAdmin) |
| 529 | return {}; |
| 530 | |
| 531 | return m_statusController->applyDamageRequest(request); |
| 532 | } |
| 533 | |
| 534 | List<DamageNotification> Player::selfDamageNotifications() { |
| 535 | return m_statusController->pullSelfDamageNotifications(); |
nothing calls this directly
no test coverage detected