| 177 | } |
| 178 | |
| 179 | void StatCollection::netElementsNeedStore() { |
| 180 | m_statModifiersNetState.setContents(m_stats.allStatModifierGroups()); |
| 181 | |
| 182 | for (auto& pair : m_resourceValuesNetStates) |
| 183 | pair.second.set(m_stats.resourceValue(pair.first)); |
| 184 | |
| 185 | for (auto& pair : m_resourceLockedNetStates) |
| 186 | pair.second.set(m_stats.resourceLocked(pair.first)); |
| 187 | } |
| 188 | |
| 189 | } |
nothing calls this directly
no test coverage detected