mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
Fix for Issue #7.
This commit is contained in:
parent
68da48e19f
commit
ddbb0176e7
@ -247,7 +247,7 @@ public class mcBlockListener implements Listener
|
|||||||
{
|
{
|
||||||
mat = Material.SAPLING;
|
mat = Material.SAPLING;
|
||||||
|
|
||||||
item = new ItemStack(mat, 1, (short)0, blockx.getData());
|
item = new ItemStack(mat, 1, (short)0, (byte)(blockx.getData()-8));
|
||||||
|
|
||||||
if(Math.random() * 10 > 9)
|
if(Math.random() * 10 > 9)
|
||||||
m.mcDropItem(blockx.getLocation(), item);
|
m.mcDropItem(blockx.getLocation(), item);
|
||||||
@ -455,7 +455,7 @@ public class mcBlockListener implements Listener
|
|||||||
|
|
||||||
if(Math.random() * 10 > 9)
|
if(Math.random() * 10 > 9)
|
||||||
{
|
{
|
||||||
ItemStack x = new ItemStack(Material.SAPLING, 1, (short)0, block.getData());
|
ItemStack x = new ItemStack(Material.SAPLING, 1, (short)0, (byte)(block.getData()-8));
|
||||||
m.mcDropItem(block.getLocation(), x);
|
m.mcDropItem(block.getLocation(), x);
|
||||||
}
|
}
|
||||||
block.setType(Material.AIR);
|
block.setType(Material.AIR);
|
||||||
|
Loading…
Reference in New Issue
Block a user