Browse Source

Updated changelog, tweaked Green Thumb if statement.

nossr50 13 years ago
parent
commit
fed21a7cb9
2 changed files with 2 additions and 1 deletions
  1. 1 0
      Changelog.txt
  2. 1 1
      src/main/java/com/gmail/nossr50/skills/Herbalism.java

+ 1 - 0
Changelog.txt

@@ -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)

+ 1 - 1
src/main/java/com/gmail/nossr50/skills/Herbalism.java

@@ -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);