Allow API override for configs by default

This commit is contained in:
James Seibel
2023-06-17 21:53:05 -05:00
parent 55019c51ed
commit 773cd3aaef
@@ -200,9 +200,9 @@ public class ConfigEntry<T> extends AbstractConfigType<T, ConfigEntry<T>> implem
public static class Builder<T> extends AbstractConfigType.Builder<T, Builder<T>>
{
private String tmpComment = null;
private T tmpMin;
private T tmpMax;
private boolean tmpUseApiOverwrite;
private T tmpMin = null;
private T tmpMax = null;
private boolean tmpUseApiOverwrite = true;
private EConfigEntryPerformance tmpPerformance = EConfigEntryPerformance.DONT_SHOW;
protected ArrayList<IConfigListener> tmpIConfigListener = new ArrayList<>();