forked from Upstream/mmocore
Fixed bug that allowed blocks to be broken when no block info was found
This commit is contained in:
parent
6c82011a77
commit
9dfaf3ae50
@ -49,7 +49,7 @@ public class BlockListener implements Listener {
|
||||
*/
|
||||
BlockInfo info = MMOCore.plugin.mineManager.getInfo(block);
|
||||
boolean temporaryBlock = MMOCore.plugin.mineManager.isTemporaryBlock(block);
|
||||
if ((temporaryBlock && info == null) || !info.checkConditions(block)) {
|
||||
if ((temporaryBlock && info == null) || (info != null && !info.checkConditions(block))) {
|
||||
event.setCancelled(true);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user