Fixed comp with MMOCore

This commit is contained in:
Jules 2020-07-06 18:04:25 +02:00
parent af0e158746
commit 3ed88704f4
2 changed files with 5 additions and 0 deletions

Binary file not shown.

View File

@ -43,4 +43,9 @@ public class MMOItemsBlockType implements BlockType {
public String generateKey() {
return "mmoitems-custom-block-" + id;
}
@Override
public boolean breakRestrictions(Block block) {
return true;
}
}