Skip to content

Commit

Permalink
releaseb add update history for blitz
Browse files Browse the repository at this point in the history
  • Loading branch information
Sammers21 committed Sep 17, 2024
1 parent 09b5d25 commit 012d4d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/github/sammers/pla/blizzard/WowAPICharacter.java
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ public WowAPICharacter updatePvpBracketData(CharAndDiff diff, BracketType bracke
pvpBracket.isRankOneRange(),
pvpBracket.gamingHistory().addDiff(new DiffAndWithWho(diff.character(), diff.diff(), withWho)).clean()
);
} else if (BracketType.fromType(pvpBracket.bracketType()).equals(bracket) && bracket.equals(BracketType.SHUFFLE)) {
} else if (BracketType.fromType(pvpBracket.bracketType()).equals(bracket) && (bracket.equals(BracketType.SHUFFLE) | bracket.equals(BracketType.BLITZ))) {
String fullSpec = diff.character().fullSpec();
if (fullSpec.contains(pvpBracket.bracketType().split("-")[1])) {
log.debug("Updating bracket " + pvpBracket.bracketType() + " with diff " + diff.toJson().encodePrettily());
Expand Down

0 comments on commit 012d4d1

Please sign in to comment.