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

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!!!
 
Routines/Singular/ClassSpecific/Mage/Common.cs
 
Yes thank you - I removed it...
... and the colon at the end of the previous line ;)
 
Here's the current test build batch - it has the fix along with a bunch of other stuff including some code cleanup.


It still conjures the refreshments. New install, deleted the mage folder, and replaced it with your new zip.

Edit: Never mind, got it to work. TY!
 
Last edited:
Back
Top