Unholy DK

This commit is contained in:
Yunfan Li
2024-04-08 22:09:26 +08:00
parent 6b49af345f
commit a9c3236e35
5 changed files with 30 additions and 15 deletions

View File

@@ -224,10 +224,10 @@ class CastDeathCoilAction : public CastSpellAction
CastDeathCoilAction(PlayerbotAI* botAI) : CastSpellAction(botAI, "death coil") { }
};
class CastBloodBoilAction : public CastBuffSpellAction
class CastBloodBoilAction : public CastSpellAction
{
public:
CastBloodBoilAction(PlayerbotAI* botAI) : CastBuffSpellAction(botAI, "blood boil") { }
CastBloodBoilAction(PlayerbotAI* botAI) : CastSpellAction(botAI, "blood boil") { }
};
class CastDeathAndDecayAction : public CastSpellAction