mirror of
https://github.com/mod-playerbots/mod-playerbots
synced 2025-11-29 15:58:20 +08:00
Hello everyone, I liked the channel cancel I did on mage recently, where they cancel blizzard if there is only 1 enemy left. I decided to do the same for the following classes: Druid: Hurricane Hunter: Volley Priest: Mind Sear Warlock: Rain of Fire I moved the "ChannelCancel" action to it's own file, so other classes could benefit from it. I removed it from the mageactions.
22 lines
526 B
C++
22 lines
526 B
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license, you may redistribute it
|
|
* and/or modify it under version 2 of the License, or (at your option), any later version.
|
|
*/
|
|
|
|
#ifndef _PLAYERBOT_CANCELCHANNELACTION_H
|
|
#define _PLAYERBOT_CANCELCHANNELACTION_H
|
|
|
|
#include "Action.h"
|
|
|
|
class PlayerbotAI;
|
|
|
|
class CancelChannelAction : public Action
|
|
{
|
|
public:
|
|
CancelChannelAction(PlayerbotAI* botAI) : Action(botAI, "cancel channel") {}
|
|
|
|
bool Execute(Event event) override;
|
|
};
|
|
|
|
#endif
|