1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-18 17:53:00 +01:00

THis should stay false.

This commit is contained in:
GJ
2013-08-28 13:13:34 -04:00
parent d41ccf9072
commit 2c8b9334b6

View File

@@ -346,7 +346,7 @@ public final class SQLDatabaseManager implements DatabaseManager {
public PlayerProfile loadPlayerProfile(String playerName, boolean create) {
if (!checkConnected()) {
return new PlayerProfile(playerName, create); // return fake profile if not connected
return new PlayerProfile(playerName, false); // return fake profile if not connected
}
PreparedStatement statement = null;