Various Updates #138

Merged
SenseiKiwi merged 20 commits from master into master 2014-03-06 06:23:16 +00:00
Showing only changes of commit 175fa41318 - Show all commits

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)