mirror of
https://github.com/TotalFreedomMC/TotalFreedomMod.git
synced 2024-11-18 17:30:02 +00:00
Log player logins and exits.
Because 1.7 will not log player logins and exits, TotalFreedomMod will have to do this instead.
This commit is contained in:
parent
60f71c9dfc
commit
e29d4673dd
1 changed files with 6 additions and 0 deletions
|
@ -660,6 +660,9 @@ public class TFM_PlayerListener implements Listener
|
|||
playerdata.regenerateHistory();
|
||||
playerdata.clearHistory();
|
||||
}
|
||||
|
||||
// Log player quitting, because 1.7 doesn't do this
|
||||
TFM_Log.info(player.getName() + " left the game.");
|
||||
}
|
||||
|
||||
@EventHandler(priority = EventPriority.MONITOR)
|
||||
|
@ -687,6 +690,9 @@ public class TFM_PlayerListener implements Listener
|
|||
final Player player = event.getPlayer();
|
||||
final TFM_PlayerData playerdata = TFM_PlayerData.getPlayerData(player);
|
||||
playerdata.setSuperadminIdVerified(null);
|
||||
|
||||
// Log join message, as 1.7 doesn't log it anymore
|
||||
TFM_Log.info(player.getName() + " joined the game.");
|
||||
|
||||
TFM_UserList.getInstance(TotalFreedomMod.plugin).addUser(player);
|
||||
|
||||
|
|
Loading…
Reference in a new issue