From 5e65f9f0b24674d516015675f39541e878bacc72 Mon Sep 17 00:00:00 2001 From: Bohica <53943479+Bohicatv@users.noreply.github.com> Date: Sun, 16 Nov 2025 10:09:44 -0800 Subject: [PATCH] fix: Fixes descending comparer in admin gump (#2272) --- Projects/UOContent/Gumps/AdminGump.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Projects/UOContent/Gumps/AdminGump.cs b/Projects/UOContent/Gumps/AdminGump.cs index e9c91dba3..00e65887d 100644 --- a/Projects/UOContent/Gumps/AdminGump.cs +++ b/Projects/UOContent/Gumps/AdminGump.cs @@ -4095,15 +4095,15 @@ namespace Server.Gumps { if (x is not KeyValuePair> a) { - return -1; + return 1; } if (y is not KeyValuePair> b) { - return 1; + return -1; } - return a.Value.Count - b.Value.Count; + return b.Value.Count - a.Value.Count; } }