Skip to content

Commit

Permalink
releaseb switching back to newIsZero
Browse files Browse the repository at this point in the history
  • Loading branch information
Sammers21 committed Jan 8, 2025
1 parent 0e810fa commit ce45e9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/github/sammers/pla/logic/Calculator.java
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public static Maybe<SnapshotDiff> calcDiffAndCombine(String bracket, String regi
}

public static SnapshotDiff calculateDiff(Snapshot oldChars, Snapshot newChars, String bracket) {
return calculateDiff(oldChars, newChars, bracket, false);
return calculateDiff(oldChars, newChars, bracket, true);
}

public static List<List<CharAndDiff>> whoPlayedWithWho(SnapshotDiff diff, int pplInTheGroup, CharacterCache cache) {
Expand Down

0 comments on commit ce45e9c

Please sign in to comment.