| 923 | |
| 924 | auto Sorcery::Controller::has_character(const std::string &flag) const -> bool { |
| 925 | |
| 926 | if (_characters.contains(flag)) |
| 927 | if (_characters.at(flag) != -1) |
| 928 | return true; |
| 929 | |
| 930 | return false; |
| 931 | } |
nothing calls this directly
no outgoing calls
no test coverage detected