Chat message sound + minor JSOn fix

This commit is contained in:
Anuken
2022-05-25 23:15:09 -04:00
parent 6d9029fb23
commit e2bd6571b1
5 changed files with 7 additions and 1 deletions

View File

@@ -443,6 +443,10 @@ public class ContentParser{
unit = make(resolve(value.getString("class", ""), UnitType.class), mod + "-" + name);
if(value.has("class")){
value.remove("class");
}
var typeVal = value.get("type");
if(typeVal != null && !typeVal.isString()){