| 195 | } |
| 196 | |
| 197 | esv::Status* esv::StatusMachine::GetStatus(FixedString const& statusId) const |
| 198 | { |
| 199 | for (auto status : Statuses) { |
| 200 | if (status->StatusId == statusId) { |
| 201 | return status; |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | return nullptr; |
| 206 | } |
| 207 | |
| 208 | static bool CharacterGetSelfCalled{ false }; |
| 209 |
nothing calls this directly
no outgoing calls
no test coverage detected