Skip to content

Commit

Permalink
fix bug with dimension blacklist check
Browse files Browse the repository at this point in the history
  • Loading branch information
progwml6 committed Sep 9, 2013
1 parent 8464d34 commit 1f6f7f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tconstruct/worldgen/SlimeIslandGen.java
Expand Up @@ -33,7 +33,7 @@ public SlimeIslandGen(int id, int meta)
@Override
public void generate (Random random, int chunkX, int chunkZ, World world, IChunkProvider chunkGenerator, IChunkProvider chunkProvider) //IWorldGenerator version
{
if (!dimblacklist.isDimInBlacklist(world.provider.dimensionId))
if (dimblacklist.isDimInBlacklist(world.provider.dimensionId))
{
if (random.nextInt(PHConstruct.islandRarity) == 0)
generateIsland(world, random, chunkX * 16, chunkZ * 16);
Expand Down

0 comments on commit 1f6f7f2

Please sign in to comment.