Config fix
This commit is contained in:
parent
30bde849f8
commit
a2d7a5f7c8
2 changed files with 3 additions and 4 deletions
|
@ -39,9 +39,6 @@ public class BetterEnd implements ModInitializer {
|
|||
public static final Logger LOGGER = Logger.get();
|
||||
@Override
|
||||
public void onInitialize() {
|
||||
TerrainGenerator.init();
|
||||
GeneratorOptions.init();
|
||||
|
||||
EndSounds.register();
|
||||
EndItems.register();
|
||||
EndBlocks.register();
|
||||
|
@ -63,6 +60,8 @@ public class BetterEnd implements ModInitializer {
|
|||
EndStructures.register();
|
||||
Integrations.register();
|
||||
BonemealUtil.init();
|
||||
TerrainGenerator.init();
|
||||
GeneratorOptions.init();
|
||||
|
||||
if (hasGuideBook()) {
|
||||
GuideBookItem.register();
|
||||
|
|
|
@ -56,7 +56,7 @@ public final class ConfigKeeper {
|
|||
String paramKey = key.getEntry();
|
||||
paramKey += " [default: " + entry.getDefault() + "]";
|
||||
|
||||
this.changed = entry.setLocation(obj, paramKey);
|
||||
this.changed |= entry.setLocation(obj, paramKey);
|
||||
}
|
||||
|
||||
private <T, E extends Entry<T>> void storeValue(E entry, T value) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue