diff --git a/BasicRotations/Magical/SMN_Default.cs b/BasicRotations/Magical/SMN_Default.cs index 16a6a5a..1da77bb 100644 --- a/BasicRotations/Magical/SMN_Default.cs +++ b/BasicRotations/Magical/SMN_Default.cs @@ -16,7 +16,9 @@ public enum SummonOrderType : byte [Description("Topaz-Ruby-Emerald")] TopazRubyEmerald, - [Description("Emerald-Topaz-Ruby")] EmeraldTopazRuby + [Description("Emerald-Topaz-Ruby")] EmeraldTopazRuby, + + [Description("Ruby-Emerald-Topaz")] RubyEmeraldTopaz, } [RotationConfig(CombatType.PvE, Name = "Use Crimson Cyclone. Will use at any range, regardless of saftey use with caution.")] @@ -155,6 +157,12 @@ protected override bool GeneralGCD(out IAction? act) if (SummonTopazPvE.CanUse(out act)) return true; if (SummonRubyPvE.CanUse(out act)) return true; break; + + case SummonOrderType.RubyEmeraldTopaz: + if (SummonRubyPvE.CanUse(out act)) return true; + if (SummonEmeraldPvE.CanUse(out act)) return true; + if (SummonTopazPvE.CanUse(out act)) return true; + break; } }