disable heavy-cost rpg action

This commit is contained in:
Yunfan Li
2023-07-29 10:55:54 +08:00
parent 7bd7c46088
commit 944e0fa1ed
4 changed files with 14 additions and 9 deletions

View File

@@ -24,7 +24,7 @@ class NearestEnemyPlayersValue : public PossibleTargetsValue
class EnemyPlayerValue : public UnitCalculatedValue
{
public:
EnemyPlayerValue(PlayerbotAI* botAI, std::string const name = "enemy player") : UnitCalculatedValue(botAI, name) { }
EnemyPlayerValue(PlayerbotAI* botAI, std::string const name = "enemy player") : UnitCalculatedValue(botAI, name, 2) { }
Unit* Calculate() override;