Thunderstorm

This commit is contained in:
Yunfan Li
2023-12-17 17:46:00 +08:00
parent 30c46b59d0
commit b96244b28f

View File

@@ -331,10 +331,10 @@ class CastLightningBoltAction : public CastSpellAction
CastLightningBoltAction(PlayerbotAI* botAI) : CastSpellAction(botAI, "lightning bolt") { }
};
class CastThunderstormAction : public CastMeleeSpellAction
class CastThunderstormAction : public CastSpellAction
{
public:
CastThunderstormAction(PlayerbotAI* botAI) : CastMeleeSpellAction(botAI, "thunderstorm") { }
CastThunderstormAction(PlayerbotAI* botAI) : CastSpellAction(botAI, "thunderstorm") { }
};
class CastHeroismAction : public CastBuffSpellAction