some more css & "no results found"

This commit is contained in:
Valentijn van der Jagt
2025-12-29 23:46:07 +01:00
parent 84773e3363
commit 7fd0eab2c5
2 changed files with 266 additions and 123 deletions

View File

@@ -53,6 +53,9 @@ public class BonusManager {
}
list.sort((a, b) -> Integer.compare(b.second, a.second));
if (list.get(0).second.equals(0)){
return new ArrayList<>();
}
ArrayList<BonusItem> top10 = new ArrayList<>();
int i = 0;
while (top10.size() < 10) {