mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
Add zone 1700 to list of accessible zones (#87)
* Add zone 1700 to list of accessible zones also fix indentation * Indent using tabs instead of spaces * Add zone 1500 * Remove zone 1500 and add back 1700 which was accidentally deleted again
This commit is contained in:
parent
179d44fdd3
commit
84a376b425
@ -1928,53 +1928,54 @@ void SlashCommandHandler::HandleChatCommand(const std::u16string& command, Entit
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool SlashCommandHandler::CheckIfAccessibleZone(const unsigned int zoneID) {
|
bool SlashCommandHandler::CheckIfAccessibleZone(const unsigned int zoneID) {
|
||||||
switch (zoneID) {
|
switch (zoneID) {
|
||||||
case 98:
|
case 98:
|
||||||
case 1000:
|
case 1000:
|
||||||
case 1001:
|
case 1001:
|
||||||
|
|
||||||
case 1100:
|
|
||||||
case 1101:
|
|
||||||
case 1150:
|
|
||||||
case 1151:
|
|
||||||
case 1152:
|
|
||||||
|
|
||||||
case 1200:
|
|
||||||
case 1201:
|
|
||||||
|
|
||||||
case 1250:
|
case 1100:
|
||||||
case 1251:
|
case 1101:
|
||||||
case 1260:
|
case 1150:
|
||||||
|
case 1151:
|
||||||
case 1300:
|
case 1152:
|
||||||
case 1350:
|
|
||||||
case 1351:
|
|
||||||
|
|
||||||
case 1400:
|
|
||||||
case 1401:
|
|
||||||
case 1450:
|
|
||||||
case 1451:
|
|
||||||
|
|
||||||
case 1600:
|
|
||||||
case 1601:
|
|
||||||
case 1602:
|
|
||||||
case 1603:
|
|
||||||
case 1604:
|
|
||||||
|
|
||||||
case 1800:
|
|
||||||
case 1900:
|
|
||||||
case 2000:
|
|
||||||
|
|
||||||
case 58004:
|
case 1200:
|
||||||
case 58005:
|
case 1201:
|
||||||
case 58006:
|
|
||||||
return true;
|
case 1250:
|
||||||
|
case 1251:
|
||||||
default:
|
case 1260:
|
||||||
return false;
|
|
||||||
}
|
case 1300:
|
||||||
|
case 1350:
|
||||||
return false;
|
case 1351:
|
||||||
|
|
||||||
|
case 1400:
|
||||||
|
case 1401:
|
||||||
|
case 1450:
|
||||||
|
case 1451:
|
||||||
|
|
||||||
|
case 1600:
|
||||||
|
case 1601:
|
||||||
|
case 1602:
|
||||||
|
case 1603:
|
||||||
|
case 1604:
|
||||||
|
|
||||||
|
case 1700:
|
||||||
|
case 1800:
|
||||||
|
case 1900:
|
||||||
|
case 2000:
|
||||||
|
|
||||||
|
case 58004:
|
||||||
|
case 58005:
|
||||||
|
case 58006:
|
||||||
|
return true;
|
||||||
|
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SlashCommandHandler::SendAnnouncement(const std::string& title, const std::string& message) {
|
void SlashCommandHandler::SendAnnouncement(const std::string& title, const std::string& message) {
|
||||||
|
Loading…
Reference in New Issue
Block a user