Update BlockPedestal.java

This commit is contained in:
Aleksey 2020-11-22 22:25:35 +03:00
parent 0180fcf11e
commit 024fe7b303

View file

@ -312,7 +312,6 @@ public class BlockPedestal extends BlockBaseNotFull implements BlockEntityProvid
@Override @Override
public int getComparatorOutput(BlockState state, World world, BlockPos pos) { public int getComparatorOutput(BlockState state, World world, BlockPos pos) {
System.out.println(state.get(HAS_ITEM));
return state.get(HAS_ITEM) ? 15 : 0; return state.get(HAS_ITEM) ? 15 : 0;
} }