gmcferrin 13 роки тому
батько
коміт
ddbb0176e7

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

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