Bläddra i källkod

Reduce console spam

nossr50 6 år sedan
förälder
incheckning
9e336c8a6f

+ 7 - 3
src/main/java/com/gmail/nossr50/util/experience/ExperienceManager.java

@@ -61,6 +61,8 @@ public class ExperienceManager {
         mcMMO.p.getLogger().info("Registering combat XP values...");
         for (String entityString : platformSafeMap.keySet()) {
             //Iterate over all EntityType(s)
+            boolean foundMatch = false;
+
             for (EntityType type : EntityType.values()) {
                 //Match ignoring case
                 if (entityString.equalsIgnoreCase(type.name())) {
@@ -70,11 +72,13 @@ public class ExperienceManager {
                     }
                     //Match found
                     combatXPMultiplierMap.put(type, platformSafeMap.get(entityString));
-                } else {
-                    //Log an error so the admin can deal with figuring it out
-                    mcMMO.p.getLogger().severe("No entity could be matched for the combat experience config value named - " + entityString);
+                    foundMatch = true;
                 }
             }
+
+            if(!foundMatch) {
+                mcMMO.p.getLogger().severe("No entity could be matched for the combat experience config value named - " + entityString);
+            }
         }
     }