Skip to content

Commit

Permalink
releaseb char update should look for blitz characters to update too
Browse files Browse the repository at this point in the history
  • Loading branch information
Sammers21 committed Feb 23, 2025
1 parent 9236a42 commit b1ecff2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/github/sammers/pla/logic/CharUpdater.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public Completable updateCharacters(String region,
List<Triplet<String, String, Long>> newChars = new ArrayList<>();
// nickName, realm, lastUpdate, rating
Map<Pair<String, String>, Pair<Long, Long>> existing = new HashMap<>();
for (String bracket : List.of(THREE_V_THREE, TWO_V_TWO, RBG, SHUFFLE)) {
for (String bracket : BRACKETS) {
Snapshot snapshot = refs.refByBracket(bracket, region).get();
if (snapshot == null) {
log.warn("No data for bracket {}-{}", region, bracket);
Expand Down

0 comments on commit b1ecff2

Please sign in to comment.