0x0043EE25
| 224 | |
| 225 | // 0x0043EE25 |
| 226 | static bool validateStep1() |
| 227 | { |
| 228 | if (!Game::hasFlags(GameStateFlags::tileManagerLoaded)) |
| 229 | { |
| 230 | return true; |
| 231 | } |
| 232 | |
| 233 | if (TownManager::towns().size() >= Limits::kMinTowns) |
| 234 | { |
| 235 | return true; |
| 236 | } |
| 237 | |
| 238 | GameCommands::setErrorText(StringIds::at_least_one_town_be_built); |
| 239 | return false; |
| 240 | } |
| 241 | |
| 242 | // 0x0043D0FA |
| 243 | void goToPreviousStep() |
no test coverage detected