Missed this

This commit is contained in:
Jesse Boyd 2018-08-13 01:28:23 +10:00
parent 26593a135d
commit 289707b410
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -69,6 +69,8 @@ public final class NBTUtils {
return "TAG_String";
} else if (clazz.equals(IntArrayTag.class)) {
return "TAG_Int_Array";
} else if (clazz.equals(LongArrayTag.class)) {
return "TAG_Long_Array";
} else {
throw new IllegalArgumentException("Invalid tag classs ("
+ clazz.getName() + ").");