Skip to content

Commit

Permalink
Fix copy-paste bug
Browse files Browse the repository at this point in the history
  • Loading branch information
BONNe committed Oct 25, 2023
1 parent 67dd9cb commit c0a04e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ public static int compareTrinkets(String leftName,
if (leftValue.get().getConfig().hasCuriosSlot() && rightValue.get().getConfig().hasCuriosSlot())
{
yield leftValue.get().getConfig().getCuriosSlot().
compareTo(rightValue.get().getTrinketConfig().getName());
compareTo(rightValue.get().getConfig().getCuriosSlot());
}
else
{
Expand Down

0 comments on commit c0a04e3

Please sign in to comment.