mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-03 14:26:27 +00:00
clean up PluginConfig
This commit is contained in:
@@ -15,19 +15,11 @@ public interface PluginConfig {
|
||||
|
||||
boolean dumpDefaultConfig();
|
||||
|
||||
boolean isDebugCommands();
|
||||
|
||||
boolean isDebugProfiler();
|
||||
|
||||
boolean isDebugScript();
|
||||
|
||||
int getBiomeSearchResolution();
|
||||
|
||||
int getStructureCache();
|
||||
|
||||
int getSamplerCache();
|
||||
|
||||
int getMaxRecursion();
|
||||
|
||||
int getProviderCache();
|
||||
}
|
||||
|
||||
@@ -98,11 +98,6 @@ public class PluginConfigImpl implements ConfigTemplate, PluginConfig {
|
||||
return dumpDefaultData;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isDebugCommands() {
|
||||
return debugCommands;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isDebugProfiler() {
|
||||
return debugProfiler;
|
||||
@@ -113,16 +108,6 @@ public class PluginConfigImpl implements ConfigTemplate, PluginConfig {
|
||||
return debugScript;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getBiomeSearchResolution() {
|
||||
return biomeSearch;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getStructureCache() {
|
||||
return structureCache;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getSamplerCache() {
|
||||
return samplerCache;
|
||||
@@ -133,8 +118,4 @@ public class PluginConfigImpl implements ConfigTemplate, PluginConfig {
|
||||
return maxRecursion;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getProviderCache() {
|
||||
return providerCache;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user