Browse Source

Fix bug with Leaf Blower.

gmcferrin 13 years ago
parent
commit
cbeb994b69

+ 3 - 1
src/main/java/com/gmail/nossr50/listeners/mcBlockListener.java

@@ -379,9 +379,10 @@ public class mcBlockListener implements Listener
     	{	
     		if(LoadProperties.woodcuttingrequiresaxe)
     		{
-    			if(m.isAxes(inhand))
+    			if(m.isAxes(inhand)){
     				event.setInstaBreak(true);
     				WoodCutting.leafBlower(player, block);
+    			}
     		}
     		else{
     			event.setInstaBreak(true);
@@ -389,6 +390,7 @@ public class mcBlockListener implements Listener
     		}
     		
     	}
+    	
     	if(block.getType() == Material.AIR && plugin.misc.blockWatchList.contains(block))
     	{
     		plugin.misc.blockWatchList.remove(block);

+ 0 - 6
src/main/java/com/gmail/nossr50/skills/WoodCutting.java

@@ -213,12 +213,6 @@ public class WoodCutting
 	    		m.damageTool(player, (short) LoadProperties.abilityDurabilityLoss);
 	    }
 		
-		if(Math.random() * 10 > 9)
-		{
-			ItemStack x = new ItemStack(Material.SAPLING, 1, (short)0, (byte)(block.getData()-8));
-			m.mcDropItem(block.getLocation(), x);
-		}
-		
 		if(LoadProperties.spoutEnabled)
 			SpoutStuff.playSoundForPlayer(SoundEffect.POP, player, block.getLocation());
     }