general code cleanup

removed some unused classes

Signed-off-by: Giovanni Harting <539@idlegandalf.com>
This commit is contained in:
2018-06-12 18:12:36 +02:00
parent f4befa63c9
commit e98fc61144
34 changed files with 14 additions and 368 deletions

View File

@@ -26,10 +26,9 @@ public class StateMatcher implements Predicate<IBlockState> {
if (state != null) {
if (property != null && value != null) {
if (state.getBlock() == this.state.getBlock())
if (checkLayerForBlocks(3, 3, -1, world, pos) ||
return checkLayerForBlocks(3, 3, -1, world, pos) ||
checkLayerForBlocks(3, 3, 0, world, pos) ||
checkLayerForBlocks(3, 3, 1, world, pos))
return true;
checkLayerForBlocks(3, 3, 1, world, pos);
} else
return state.getBlock() == this.state.getBlock();