mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-15 09:50:27 +00:00
fixing multiple 'unused variable' warnings (#1224)
This commit is contained in:
@@ -25,14 +25,14 @@ private:
|
||||
/*A*/ NextAction::array(0, new NextAction("shoot"), nullptr),
|
||||
/*C*/ nullptr);
|
||||
}
|
||||
static ActionNode* unstable_affliction(PlayerbotAI* ai)
|
||||
static ActionNode* unstable_affliction([[maybe_unused]] PlayerbotAI* botAI)
|
||||
{
|
||||
return new ActionNode("unstable affliction",
|
||||
/*P*/ NULL,
|
||||
/*A*/ NextAction::array(0, new NextAction("immolate"), NULL),
|
||||
/*C*/ NULL);
|
||||
}
|
||||
static ActionNode* unstable_affliction_on_attacker(PlayerbotAI* ai)
|
||||
static ActionNode* unstable_affliction_on_attacker([[maybe_unused]] PlayerbotAI* botAI)
|
||||
{
|
||||
return new ActionNode("unstable affliction on attacker",
|
||||
/*P*/ NULL,
|
||||
|
||||
Reference in New Issue
Block a user