Skip to content

Commit

Permalink
fix: #542
Browse files Browse the repository at this point in the history
  • Loading branch information
Misat11 committed Jul 17, 2024
1 parent 35fd7d4 commit 65df090
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public void regen() {
BlockState feedState = blockFeed.getState();

headState.setType(brokenBlockTypes.get(blockHead));
feedState.setType(brokenBlockTypes.get(blockFeed));
feedState.setType(brokenBlockTypes.getOrDefault(blockFeed, brokenBlockTypes.get(blockHead)));
headState.setRawData((byte) 0x0);
feedState.setRawData((byte) 0x8);
feedState.update(true, false);
Expand Down

0 comments on commit 65df090

Please sign in to comment.