Revert "Paladins use Greater Blessings"

This commit is contained in:
Yunfan Li
2025-01-04 21:24:12 +08:00
committed by GitHub
parent 7c8c20b365
commit b0b3fef222
18 changed files with 10 additions and 719 deletions

View File

@@ -14,7 +14,7 @@ class PlayerbotAI;
// disc
BUFF_ACTION(CastPowerWordFortitudeAction, "power word: fortitude");
// BUFF_PARTY_ACTION(CastPowerWordFortitudeOnPartyAction, "power word: fortitude");
BUFF_PARTY_ACTION(CastPowerWordFortitudeOnPartyAction, "power word: fortitude");
BUFF_PARTY_ACTION(CastPrayerOfFortitudeOnPartyAction, "prayer of fortitude");
BUFF_ACTION(CastPowerWordShieldAction, "power word: shield");
@@ -210,11 +210,4 @@ public:
CastGuardianSpiritOnPartyAction(PlayerbotAI* ai) : HealPartyMemberAction(ai, "guardian spirit", 40.0f, HealingManaEfficiency::MEDIUM) {}
};
class CastPowerWordFortitudeOnPartyAction : public BuffOnPartyAction
{
public:
CastPowerWordFortitudeOnPartyAction(PlayerbotAI* ai) : BuffOnPartyAction(ai, "power word: fortitude") {}
bool Execute(Event event) override;
};
#endif