stat manager takes an OfflinePlayer instead

Took 17 seconds
This commit is contained in:
Kiran Hart 2022-03-23 02:09:51 -04:00
parent 4335fa75df
commit c038dc2c5c

View File

@ -35,7 +35,7 @@ public final class AuctionStatManager {
});
}
public AuctionStat<Integer, Integer, Integer, Double, Double> getPlayerStats(final Player player) {
public AuctionStat<Integer, Integer, Integer, Double, Double> getPlayerStats(final OfflinePlayer player) {
return this.stats.getOrDefault(player.getUniqueId(), new AuctionStat<>(0, 0, 0, 0D, 0D));
}