[J25] Implement Delightful Discovery

This commit is contained in:
theelk801 2024-11-13 11:07:13 -05:00
parent f46900aef9
commit c360d007e6
3 changed files with 85 additions and 1 deletions

View file

@ -94,7 +94,7 @@ public class SpellsCastWatcher extends Watcher {
}
public int getCount(UUID playerId) {
return spellsCast.getOrDefault(playerId, new ArrayList<>()).size();
return spellsCast.getOrDefault(playerId, Collections.emptyList()).size();
}
}