This commit is contained in:
Lemon 2018-08-04 15:06:19 +05:00 committed by GitHub
parent 75fb1b2172
commit 84c0e90164
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -110,7 +110,7 @@ public class PlayerVerification extends FreedomService
// Create new data if nonexistent
if (vPlayer == null)
{
FLog.info("Creating new player verification entry for: " + player.getName());
FLog.info("Creating new player verification entry for " + player.getName());
// Create new player
vPlayer = new VPlayer(player);
@ -144,7 +144,7 @@ public class PlayerVerification extends FreedomService
if (!vPlayer.isValid())
{
FLog.warning("Could not load player verification entry " + username + ". Entry is not valid!");
FLog.warning("Could not load player verification entry for " + username + ". Entry is not valid!");
configFile.delete();
return null;
}
@ -190,7 +190,7 @@ public class PlayerVerification extends FreedomService
}
catch (IOException e)
{
FLog.warning("Failed to convert Player Verification entry for " + player.getName());
FLog.warning("Failed to convert player verification entry for " + player.getName());
}
}