Skip to content

Commit

Permalink
Adjust block state check
Browse files Browse the repository at this point in the history
  • Loading branch information
62832 committed Jul 11, 2024
1 parent a4d0512 commit c58a7eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/gripe/_90/fulleng/block/TerminalBlock.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public InteractionResult useWithoutItem(

@Override
public boolean hasAnalogOutputSignal(BlockState state) {
return this == FullEngBlocks.PATTERN_ENCODING_TERMINAL.block();
return state.is(FullEngBlocks.PATTERN_ENCODING_TERMINAL.block());
}

@Override
Expand Down

0 comments on commit c58a7eb

Please sign in to comment.