Fixed issue with Redstone being unable to break with Super Breaker without a diamond pickaxe.

This commit is contained in:
gmcferrin 2012-01-19 16:05:09 -05:00
parent fd3cee96f0
commit 75cf202987

View File

@ -394,7 +394,7 @@ public class Mining
block.setType(Material.AIR);
}
//REDSTONE
if((block.getTypeId() == 73 || block.getTypeId() == 74) && m.getTier(player) >= 4)
if((block.getTypeId() == 73 || block.getTypeId() == 74) && m.getTier(player) >= 3)
{
if(!plugin.misc.blockWatchList.contains(block)&& block.getData() != (byte) 5)
{