package net.knarcraft.timeismoney.manager; import org.bukkit.entity.Player; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.HashMap; import java.util.Map; /** * A tracker keeping track of players' payment times */ public final class PlayerTracker { private static final Map playerLastPaid = new HashMap<>(); private PlayerTracker() { } /** * Track's a player's last payment time * *

Call this when the player joins to set the 0 time.

* * @param player

The player to track

*/ public static void trackPlayer(@NotNull Player player) { playerLastPaid.put(player, System.currentTimeMillis()); } /** * Gets the last time the given player was paid * *

The return time is in the format of 'System.currentTimeMillis()'

* * @param player

The player to check player time for

* @return

The last time the player was paid

*/ public static @Nullable Long getPaymentTime(@NotNull Player player) { return playerLastPaid.get(player); } }