| 2726 | } |
| 2727 | |
| 2728 | String const* Player::getSecretPropertyPtr(String const& name) const { |
| 2729 | return m_effectsAnimator->globalTagPtr(secretProprefix + name); |
| 2730 | } |
| 2731 | |
| 2732 | Json Player::getSecretProperty(String const& name, Json defaultValue) const { |
| 2733 | if (auto tag = m_effectsAnimator->globalTagPtr(secretProprefix + name)) { |
nothing calls this directly
no test coverage detected