From 0f22bf0d74a61dd942f136cbb519f72704e5419d Mon Sep 17 00:00:00 2001 From: Yunfan Li Date: Sat, 6 Jan 2024 23:46:39 +0800 Subject: [PATCH] Allow multiple rupture from diff players --- src/strategy/rogue/RogueFinishingActions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategy/rogue/RogueFinishingActions.h b/src/strategy/rogue/RogueFinishingActions.h index f2d9a686..fdc606dd 100644 --- a/src/strategy/rogue/RogueFinishingActions.h +++ b/src/strategy/rogue/RogueFinishingActions.h @@ -30,7 +30,7 @@ class CastExposeArmorAction : public CastDebuffSpellAction class CastRuptureAction : public CastDebuffSpellAction { public: - CastRuptureAction(PlayerbotAI* botAI) : CastDebuffSpellAction(botAI, "rupture") { } + CastRuptureAction(PlayerbotAI* botAI) : CastDebuffSpellAction(botAI, "rupture", true, 6.0f) { } }; class CastKidneyShotAction : public CastMeleeSpellAction