mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-02-20 00:29:35 +01:00
Updated changelog, tweaked Green Thumb if statement.
This commit is contained in:
parent
a97783ed86
commit
fed21a7cb9
@ -10,6 +10,7 @@ Version 1.2.12
|
|||||||
- Fixed Fishing not working or handing out XP
|
- Fixed Fishing not working or handing out XP
|
||||||
- Fixed error with Skull Splitter / Serrated Strikes that caused server instability and log spam
|
- 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 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
|
Version 1.2.11
|
||||||
- Removed legacy Permission & PEX dependency. (PEX still works fine with mcMMO)
|
- Removed legacy Permission & PEX dependency. (PEX still works fine with mcMMO)
|
||||||
|
@ -179,7 +179,7 @@ public class Herbalism
|
|||||||
}
|
}
|
||||||
|
|
||||||
//GREEN THUMB
|
//GREEN THUMB
|
||||||
if(!PP.getGreenTerraMode() && (herbLevel > 1500 || (Math.random() * 1500 <= herbLevel)))
|
if(!PP.getGreenTerraMode() && (herbLevel >= 1500 || (Math.random() * 1500 <= herbLevel)))
|
||||||
{
|
{
|
||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
m.mcDropItem(loc, is);
|
m.mcDropItem(loc, is);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user