Removing STDOUT (oops)

This commit is contained in:
samo_lego 2020-11-01 17:21:48 +01:00
parent 7f238e7d0c
commit 7716b751a5
1 changed files with 0 additions and 4 deletions

View File

@ -85,10 +85,6 @@ public abstract class MixinPlayerManager {
File onlineFile = new File(serverStatsDir, uUID + ".json");
if(config.experimental.premiumAutologin && !config.experimental.forceoOfflineUuids && ((PlayerAuth) player).isUsingMojangAccount() && !onlineFile.exists()) {
((ServerStatHandlerAccessor) serverStatHandler).setFile(onlineFile);
System.out.println("File: " + ((ServerStatHandlerAccessor) serverStatHandler).getFile().getName());
}
else
System.out.println("Nope: " + ((ServerStatHandlerAccessor) serverStatHandler).getFile().getName());
}
}