|
@@ -140,7 +140,8 @@ public class WoodCutting
|
|
|
item = new ItemStack(mat, 1, (short)0, (byte)(x.getData()-8));
|
|
|
|
|
|
//90% chance to drop sapling
|
|
|
- m.mcRandomDropItem(x.getLocation(), item, 90);
|
|
|
+ if(Math.random() * 10 > 9)
|
|
|
+ m.mcRandomDropItem(x.getLocation(), item, 90);
|
|
|
|
|
|
//Remove the block
|
|
|
x.setData((byte) 0);
|