| 349 | } |
| 350 | |
| 351 | bool StatusController::uniqueStatusEffectActive(String const& effectName) const { |
| 352 | for (auto const& metadata : m_uniqueEffectMetadata.netElements()) { |
| 353 | if (metadata->effect == effectName) |
| 354 | return true; |
| 355 | } |
| 356 | |
| 357 | return false; |
| 358 | } |
| 359 | |
| 360 | const Directives& StatusController::primaryDirectives() const { |
| 361 | return m_primaryDirectives; |
nothing calls this directly
no test coverage detected