修复玩家首次加入

This commit is contained in:
Kyoukawa Meishin 2025-10-17 15:56:05 +08:00
parent 1d0951f6a8
commit f3eec826ec

View File

@ -28,6 +28,7 @@ public class PlayerJoinListener implements Listener {
@EventHandler
public void onJoin(PlayerJoinEvent e) {
joinTimes.put(e.getPlayer().getUniqueId(), System.currentTimeMillis());
savePlayer(e.getPlayer());
}
@EventHandler