Add option to not log failures

There is some insane console spam, would be nice to get rid of it.
This commit is contained in:
NomNuggetNom 2016-03-19 14:20:15 -04:00
parent b1b35fe025
commit 8bb2215834

View File

@ -3,6 +3,8 @@ package us.myles.ViaVersion.util;
import org.bukkit.entity.EntityType;
public class EntityUtil {
public static boolean logErrors = true;
public static EntityType getTypeFromID(int typeID, boolean isObject) {
if (isObject) {
@ -82,7 +84,8 @@ public class EntityUtil {
default:
type = EntityType.fromId(objectID);
if (type == null) {
System.out.println("Unable to find entity type for " + objectID);
if (logErrors)
System.out.println("Unable to find entity type for " + objectID);
type = EntityType.UNKNOWN;
}
break;