From 0a9ed6fffae9c6f4f87ab2bb055440427ef203da Mon Sep 17 00:00:00 2001 From: Benjamin Herr <24142+ben0x539@users.noreply.github.com> Date: Tue, 20 Dec 2022 20:32:25 -0800 Subject: [PATCH] fix /keys sorting by rating The column index was off by one after the classic dungeon name column went away. --- functions/slash.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/slash.lua b/functions/slash.lua index 75551f9f..8b872b17 100644 --- a/functions/slash.lua +++ b/functions/slash.lua @@ -2356,10 +2356,10 @@ if (WOW_PROJECT_ID == WOW_PROJECT_MAINLINE) then elseif (columnIndex == 4) then sortByIndex = 3 --sort by classic dungeon name - elseif (columnIndex == 5) then - sortByIndex = 4 + --elseif (columnIndex == 5) then + -- sortByIndex = 4 --sort by mythic+ ranting - elseif (columnIndex == 6) then + elseif (columnIndex == 5) then sortByIndex = 6 end