missed a semicolon

This commit is contained in:
Aaron Kimbre 2022-04-12 18:32:52 -05:00
parent 4a98c46fb9
commit 959c90985c

View File

@ -1938,7 +1938,7 @@ bool SlashCommandHandler::CheckIfAccessibleZone(const unsigned int zoneID) {
std::string zonePath = "./res/maps/" + zone->zoneName;
std::transform(zonePath.begin(), zonePath.end(), zonePath.begin(), ::tolower);
std::ifstream f(zonePath.c_str());
return f.good()
return f.good();
} else {
return false;
}