Skip to content

Commit

Permalink
Fix flat-world-slime-island-generation-option being reversed
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Oct 14, 2014
1 parent acc8eaf commit eb874d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/tconstruct/world/gen/SlimeIslandGen.java
Expand Up @@ -35,7 +35,7 @@ public void generate (Random random, int chunkX, int chunkZ, World world, IChunk
// version
{
// dim 0 only?
if ((chunkGenerator instanceof ChunkProviderFlat || world.provider.terrainType == WorldType.FLAT) && PHConstruct.genIslandsFlat)
if ((chunkGenerator instanceof ChunkProviderFlat || world.provider.terrainType == WorldType.FLAT) && !PHConstruct.genIslandsFlat)
{
return;
}
Expand Down

0 comments on commit eb874d8

Please sign in to comment.