Fixed a small bug where generic types can not be disabled.

This commit is contained in:
2022-12-06 03:21:48 +01:00
parent 57280b8285
commit dafb162797
2 changed files with 91 additions and 91 deletions
@@ -113,7 +113,7 @@ public class SettingsManager
if(obj == null) {
obj = new JsonObject();
data.add(name, obj);
if(create) obj.addProperty("enabled", true);
if(create) obj.addProperty("Enabled", true);
}
return obj;
}