Fixed player not being authenticated after joining.

This commit is contained in:
samo_lego 2020-04-19 10:30:33 +02:00
parent 06e30f7f15
commit 4c838cb477
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ public class SimpleAuthDatabase {
// Tells whether db connection is closed // Tells whether db connection is closed
public boolean isClosed() { public boolean isClosed() {
return levelDBStore != null; return levelDBStore == null;
} }