Cant forget to fix mushroom growth

By: md_5 <md_5@live.com.au>
This commit is contained in:
Spigot 2013-01-17 16:25:19 +11:00
parent bc01b7362b
commit b2f83676cf

View file

@ -63,7 +63,7 @@ index 8fa8302..f66ea7a 100644
public void b(World world, int i, int j, int k, Random random) {
- if (random.nextInt((int) (world.growthOdds * 100 / world.getWorld().mushroomGrowthModifier * 25)) == 0) { // Spigot
+ if (random.nextInt((int) (world.growthOdds / world.getWorld().mushroomGrowthModifier * 25)) == 0) { // Spigot
+ if (random.nextInt(Math.max(1, (int) world.growthOdds / world.getWorld().mushroomGrowthModifier * 25)) == 0) { // Spigot
byte b0 = 4;
int l = 5;