Various Fixes #124

Merged
SenseiKiwi merged 8 commits from master into master 2014-01-06 04:16:28 +00:00
Showing only changes of commit ab17a959bb - Show all commits

View File

@@ -204,7 +204,7 @@ public class BlockRift extends BlockContainer
if (!isBlockImmune(world, current.getX(), current.getY(), current.getZ()) &&
random.nextInt(MAX_BLOCK_DESTRUCTION_CHANCE) < BLOCK_DESTRUCTION_CHANCE)
{
world.setBlockToAir(current.getX(), current.getY(), current.getZ());
world.destroyBlock(current.getX(), current.getY(), current.getZ(), false);
}
}
}