Skip to content

Commit 7f13a63

Browse files
fix: Had the wrong stop condition in for Trust queueing.
1 parent 3853e0d commit 7f13a63

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Helpers/LoadServerProfile.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,12 +440,13 @@ internal static async Task RunDutyTask(DutyType dutyType, string profileUrl, int
440440

441441
if (QueueType == 3)
442442
{
443-
if (!TrustDungeons.Contains(dungeonDutyId))
443+
if (!TrustDungeons.Contains(dungeonZoneId))
444444
{
445-
string message = $"{DataManager.InstanceContentResults[(uint)dungeonDutyId].CurrentLocaleName} is not a trust dungeon.";
445+
string message = $"{DataManager.InstanceContentResults[(uint)dungeonDutyId].CurrentLocaleName} is not a Trust dungeon.\nPlease select a different Queue Type or dungeon.";
446446
Core.OverlayManager.AddToast(() => $"{message}", TimeSpan.FromMilliseconds(25000), System.Windows.Media.Color.FromRgb(147, 112, 219), System.Windows.Media.Color.FromRgb(13, 106, 175), new System.Windows.Media.FontFamily("Gautami"));
447447
Log.Error($"{message}");
448448
TreeRoot.Stop($"{message}");
449+
break;
449450
}
450451

451452
Log.Information($"Queuing for {DataManager.InstanceContentResults[(uint)dungeonDutyId].CurrentLocaleName} with Trust");

0 commit comments

Comments
 (0)