What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Mage permanently conjures refreshments

Thank you, my hero.

For all others:
Seems not to be very important, but if I were Blizzard, I would look for mages spamming that spell :)
 
Fixed for the next update.
Thanks for the report!
 
Thank you EchoTiger for the additional information.
My HB updated some minutes ago, but my mage conjures refreshments - so you are speaking of the next patch?
Can this cast be disabled in Singular? I do not find an option
 
Just remove the link from Mage/Common.

Code:
        [Behavior(BehaviorType.PreCombatBuffs, WoWClass.Mage)]
        public static Composite CreateMagePreCombatBuffs()
        {
            return new PrioritySelector(
                Spell.WaitForCastOrChannel(),
                new Decorator(
                    ret => !Spell.IsGlobalCooldown(),
                    new PrioritySelector(


                        // Defensive
                        CreateSlowFallBehavior(),


                        PartyBuff.BuffGroup("Dalaran Brilliance", "Arcane Brilliance"),
                        PartyBuff.BuffGroup("Arcane Brilliance", "Dalaran Brilliance")


                        //Spell.BuffSelf("Conjure Refreshment", ret => !Gotfood && !StyxWoW.Me.GroupInfo.IsInParty)
                        )
                    )
                );
        }
 
In which file? I cannot find it in
SingularRoutine.Behaviors.cs
MageSettings.cs
SpoellList.MageStealist.cs

Thank you in advance

EDIT:
Got it after replying: in Common.cs

Thank you!!!
 
Back
Top