Skip the first line when reading PlayerData files
Thanks @Jikoo Related to #22
This commit is contained in:
parent
5d4ccdca20
commit
007a161bfb
|
|
@ -613,8 +613,9 @@ public class FlatFileDataStore extends DataStore
|
||||||
List<String> lines = Files.readLines(playerFile, Charset.forName("UTF-8"));
|
List<String> lines = Files.readLines(playerFile, Charset.forName("UTF-8"));
|
||||||
Iterator<String> iterator = lines.iterator();
|
Iterator<String> iterator = lines.iterator();
|
||||||
|
|
||||||
|
|
||||||
|
iterator.next();
|
||||||
//first line is last login timestamp //RoboMWM - not using this anymore
|
//first line is last login timestamp //RoboMWM - not using this anymore
|
||||||
// String lastLoginTimestampString = iterator.next();
|
|
||||||
//
|
//
|
||||||
// //convert that to a date and store it
|
// //convert that to a date and store it
|
||||||
// DateFormat dateFormat = new SimpleDateFormat("yyyy.MM.dd.HH.mm.ss");
|
// DateFormat dateFormat = new SimpleDateFormat("yyyy.MM.dd.HH.mm.ss");
|
||||||
|
|
|
||||||
|
|
@ -630,7 +630,7 @@ class PlayerEventHandler implements Listener
|
||||||
this.lastLoginThisServerSessionMap.put(playerID, nowDate);
|
this.lastLoginThisServerSessionMap.put(playerID, nowDate);
|
||||||
|
|
||||||
//if newish, prevent chat until he's moved a bit to prove he's not a bot
|
//if newish, prevent chat until he's moved a bit to prove he's not a bot
|
||||||
if(GriefPrevention.isNewToServer(player))
|
if(instance.isNewToServer(player))
|
||||||
{
|
{
|
||||||
playerData.noChatLocation = player.getLocation();
|
playerData.noChatLocation = player.getLocation();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user