Skip to content

Commit

Permalink
Adjusted large arena generation chance
Browse files Browse the repository at this point in the history
  • Loading branch information
gryttr committed Dec 30, 2017
1 parent 7df31d5 commit 18910ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public AncientSkyArena(String type) {

@Override
public boolean generate(World world, Random rand, BlockPos pos) {
if (rand.nextInt(10) != 0) {
if (rand.nextInt(1000) != 0) {
return false;
}

Expand Down

0 comments on commit 18910ec

Please sign in to comment.