Disabled Nether Gateways

Disabled Nether Gateways temporarily pending their completion
This commit is contained in:
SenseiKiwi
2014-03-04 04:40:40 -04:00
parent 93f2f6c701
commit 175fa41318

View File

@@ -45,11 +45,13 @@ public class EventHookContainer
{ {
// Replace the Nether fortress generator with our own only if any gateways would ever generate. // Replace the Nether fortress generator with our own only if any gateways would ever generate.
// This allows admins to disable our fortress overriding without disabling all gateways. // This allows admins to disable our fortress overriding without disabling all gateways.
/*
if (properties.FortressGatewayGenerationChance > 0 && properties.WorldRiftGenerationEnabled && if (properties.FortressGatewayGenerationChance > 0 && properties.WorldRiftGenerationEnabled &&
event.type == InitMapGenEvent.EventType.NETHER_BRIDGE) event.type == InitMapGenEvent.EventType.NETHER_BRIDGE)
{ {
event.newGen = new DDNetherFortressGenerator(); event.newGen = new DDNetherFortressGenerator();
} }
*/
} }
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)