Skip to content

Commit

Permalink
Corrected numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
Faboslav committed Apr 1, 2022
1 parent 97c0d5d commit 682b45f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public int spawn(ServerWorld world, boolean spawnMonsters, boolean spawnAnimals)
if (
l < 5L
|| world.isDay() == false
|| random.nextInt(5) != 3
|| random.nextInt(3) != 0
) {
return 0;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public int spawn(ServerWorld world, boolean spawnMonsters, boolean spawnAnimals)
if (
l < 5L
|| world.isDay() == false
|| random.nextInt(5) != 3
|| random.nextInt(3) != 0
) {
return 0;
}
Expand Down

0 comments on commit 682b45f

Please sign in to comment.