removed default nether gateways

This commit is contained in:
StevenRS11 2014-01-26 14:27:44 -05:00
parent d52f0ed2c7
commit 523025365a

View file

@ -67,7 +67,7 @@ public class GatewayGenerator implements IWorldGenerator
//the current world is a pocket dimension, or the world is remote.
//Also don't generate anything in The End.
if (world.isRemote || (!properties.WorldRiftGenerationEnabled) ||
(world.provider instanceof PocketProvider) || (world.provider.dimensionId == END_DIMENSION_ID))
(world.provider instanceof PocketProvider) || (world.provider.dimensionId == END_DIMENSION_ID)||(world.provider.dimensionId == NETHER_DIMENSION_ID))
{
return;
}