Skip to content

Commit

Permalink
releaseb history limit 500 -> 10_000
Browse files Browse the repository at this point in the history
  • Loading branch information
Sammers21 committed Dec 17, 2023
1 parent 27159ab commit 71ac81a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/github/sammers/pla/blizzard/GamingHistory.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public GamingHistory addDiff(DiffAndWithWho diff) {
} else {
List<DiffAndWithWho> newHist = new ArrayList<>(hist);
newHist.add(diff);
if(newHist.size() > 500){
if(newHist.size() > 10_000){
newHist.remove(0);
}
return new GamingHistory(newHist);
Expand Down

0 comments on commit 71ac81a

Please sign in to comment.