- Added raid cheat to configuration to add posibility to turn off (#1465)

- Added General Vezax strategy
This commit is contained in:
kadeshar
2025-07-27 07:51:45 +02:00
committed by GitHub
parent 237c0cffc4
commit 1e33b28abe
11 changed files with 299 additions and 87 deletions

View File

@@ -53,6 +53,9 @@ BotCheatMask CheatAction::GetCheatMask(std::string const cheat)
if (cheat == "power")
return BotCheatMask::power;
if (cheat == "raid")
return BotCheatMask::raid;
return BotCheatMask::none;
}
@@ -70,6 +73,8 @@ std::string const CheatAction::GetCheatName(BotCheatMask cheatMask)
return "mana";
case BotCheatMask::power:
return "power";
case BotCheatMask::raid:
return "raid";
default:
return "none";
}