| 56 | } |
| 57 | |
| 58 | float StatCollection::stat(String const& statName) const { |
| 59 | return m_stats.statEffectiveValue(statName); |
| 60 | } |
| 61 | |
| 62 | bool StatCollection::statPositive(String const& statName) const { |
| 63 | return stat(statName) > 0.0f; |
nothing calls this directly
no test coverage detected