Skip to content

Commit

Permalink
releaseb fix the issue with non-updating alts
Browse files Browse the repository at this point in the history
  • Loading branch information
Sammers21 committed Sep 28, 2023
1 parent b74b90e commit d94e8c7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/io/github/sammers/pla/logic/Calculator.java
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ public static void indexCharAlts(Map<Integer, Set<WowAPICharacter>> alts, WowAPI
if (value == null) {
value = new TreeSet<>(Comparator.comparing(WowAPICharacter::id));
}
value.remove(character);
value.add(character);
return value;
});
Expand Down

0 comments on commit d94e8c7

Please sign in to comment.