Add configuration option to control fix for MC-159283 end rings

This commit is contained in:
BaconCat__ 2025-12-02 16:06:02 +00:00
parent 889c6617d9
commit d51645d293
2 changed files with 3 additions and 1 deletions

View File

@ -203,7 +203,7 @@
+
+ @Override
+ public boolean configFixMC159283() {
+ return true;
+ return GlobalConfiguration.get().misc.fixEndRings;
+ }
+
+ @Override

View File

@ -345,6 +345,8 @@ public class GlobalConfiguration extends ConfigurationPart {
public boolean preventNegativeVillagerDemand = false;
@Comment("Whether the nether dimension is enabled and will be loaded.")
public boolean enableNether = true;
@Comment("Keeps Paper's fix for MC-159283 enabled. Disable to use vanilla End ring terrain.")
public boolean fixEndRings = true;
}
public BlockUpdates blockUpdates;