Updated changelog, tweaked Green Thumb if statement.

This commit is contained in:
nossr50 2012-02-14 14:51:12 -08:00
parent a97783ed86
commit fed21a7cb9
2 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@ Version 1.2.12
- Fixed Fishing not working or handing out XP
- Fixed error with Skull Splitter / Serrated Strikes that caused server instability and log spam
- Fixed config.yml not having values for End Stone & other new mining blocks
- Fixed Green Thumb/Green Terra not correctly planting wheat (Issue #133)
Version 1.2.11
- Removed legacy Permission & PEX dependency. (PEX still works fine with mcMMO)

View File

@ -179,7 +179,7 @@ public class Herbalism
}
//GREEN THUMB
if(!PP.getGreenTerraMode() && (herbLevel > 1500 || (Math.random() * 1500 <= herbLevel)))
if(!PP.getGreenTerraMode() && (herbLevel >= 1500 || (Math.random() * 1500 <= herbLevel)))
{
event.setCancelled(true);
m.mcDropItem(loc, is);