Skip to content

Commit

Permalink
Fixed for loop
Browse files Browse the repository at this point in the history
  • Loading branch information
Faboslav committed Dec 4, 2021
1 parent fb1aff1 commit 29ddd6c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class BlockRegistry
WAXED_WEATHERED_COPPER_BUTTON = register("waxed_weathered_copper_button", new CopperButtonBlock(AbstractBlock.Settings.copy(COPPER_BUTTON)));
WAXED_OXIDIZED_COPPER_BUTTON = register("waxed_oxidized_copper_button", new CopperButtonBlock(AbstractBlock.Settings.copy(COPPER_BUTTON)));

for (Block block : Registry.BLOCK) {
for (Block block : BLOCKS) {
for (BlockState blockState : block.getStateManager().getStates()) {
Block.STATE_IDS.add(blockState);
}
Expand Down

0 comments on commit 29ddd6c

Please sign in to comment.