mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-25 22:56:45 +01:00
Fixed issue with Redstone being unable to break with Super Breaker without a diamond pickaxe.
This commit is contained in:
parent
fd3cee96f0
commit
75cf202987
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user