This commit is contained in:
Anuken
2020-10-03 15:35:26 -04:00
parent 58a62ad19c
commit 06f9aa5f84
6 changed files with 9 additions and 6 deletions

View File

@@ -542,7 +542,7 @@ public class ContentParser{
}
void checkNullFields(Object object){
if(object instanceof Number || object instanceof String || toBeParsed.contains(object)) return;
if(object == null || object instanceof Number || object instanceof String || toBeParsed.contains(object) || object.getClass().getName().startsWith("arc.")) return;
parser.getFields(object.getClass()).values().toSeq().each(field -> {
try{