| 447 | } |
| 448 | |
| 449 | void Player::addEphemeralStatusEffects(List<EphemeralStatusEffect> const& statusEffects) { |
| 450 | if (isSlave()) |
| 451 | throw PlayerException("Adding status effects to an entity can only be done directly on the master entity."); |
| 452 | m_statusController->addEphemeralEffects(statusEffects); |
| 453 | } |
| 454 | |
| 455 | ActiveUniqueStatusEffectSummary Player::activeUniqueStatusEffectSummary() const { |
| 456 | return m_statusController->activeUniqueStatusEffectSummary(); |
nothing calls this directly
no test coverage detected