This commit is contained in:
asiekierka 2014-11-02 20:04:20 +01:00
parent 4ea4bb9eae
commit 50a36b3aa9

View file

@ -53,6 +53,7 @@ public final class HeuristicBlockDetection {
for (int meta = 0; meta < 16; meta++) {
if (!SchematicRegistry.INSTANCE.isSupported(block, meta)) {
try {
if (block.hasTileEntity(meta)) {
// All tiles are registered as creative only.
// This is helpful for example for server admins.
@ -71,6 +72,9 @@ public final class HeuristicBlockDetection {
} catch (Exception e) {
e.printStackTrace();
}
} catch (Exception e) {
}
}
}
}