浏览代码

Add another error message if mcMMO finds something unexpected in the database

nossr50 4 年之前
父节点
当前提交
72116d809b
共有 1 个文件被更改,包括 3 次插入4 次删除
  1. 3 4
      src/main/java/com/gmail/nossr50/database/FlatfileDatabaseManager.java

+ 3 - 4
src/main/java/com/gmail/nossr50/database/FlatfileDatabaseManager.java

@@ -310,16 +310,15 @@ public final class FlatfileDatabaseManager implements DatabaseManager {
                 boolean wroteUser = false;
                 // While not at the end of the file
                 while ((line = in.readLine()) != null) {
-                    boolean goodData = true;
-
                     //Check for incomplete or corrupted data
-                    if(!line.contains(":"))
+                    if(!line.contains(":")) {
+                        mcMMO.p.getLogger().severe("mcMMO found some unexpected data in mcmmo.users and is removing it");
                         continue;
+                    }
 
                     String[] splitData = line.split(":");
 
                     //This would be rare, but check the splitData for having enough entries to contain a username
-
                     if(splitData.length < USERNAME_INDEX) { //UUID have been in mcMMO DB for a very long time so any user without
                         //Something is wrong if we don't have enough split data to have an entry for a username
                         mcMMO.p.getLogger().severe("mcMMO found some corrupted data in mcmmo.users and is removing it.");