mirror of
https://github.com/mod-playerbots/mod-playerbots
synced 2025-11-29 15:58:20 +08:00
Merge pull request #1673 from privatecore/fix-pull-power-spark
Fix wrong cast spell action passed to the PullPowerSparkAction constructor
This commit is contained in:
@@ -30,7 +30,7 @@ class PullPowerSparkAction : public CastSpellAction
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
PullPowerSparkAction(PlayerbotAI* botAI, std::string const name = "pull power spark")
|
PullPowerSparkAction(PlayerbotAI* botAI, std::string const name = "pull power spark")
|
||||||
: CastSpellAction(botAI, "death grip") {}
|
: CastSpellAction(botAI, name) {}
|
||||||
bool Execute(Event event) override;
|
bool Execute(Event event) override;
|
||||||
bool isPossible() override;
|
bool isPossible() override;
|
||||||
bool isUseful() override;
|
bool isUseful() override;
|
||||||
|
|||||||
Reference in New Issue
Block a user