Skip to content

Commit

Permalink
Merge pull request #1032 from Dragon9815/1.20.x
Browse files Browse the repository at this point in the history
Add copper backpack block to list of blocks associated with the backpack block entity
  • Loading branch information
P3pp3rF1y authored Apr 26, 2024
2 parents a44ec24 + 97cce94 commit c627575
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ private ModBlocks() {}

@SuppressWarnings("ConstantConditions") //no datafixer type needed
public static final RegistryObject<BlockEntityType<BackpackBlockEntity>> BACKPACK_TILE_TYPE = BLOCK_ENTITY_TYPES.register("backpack", () ->
BlockEntityType.Builder.of(BackpackBlockEntity::new, BACKPACK.get(), IRON_BACKPACK.get(), GOLD_BACKPACK.get(), DIAMOND_BACKPACK.get(), NETHERITE_BACKPACK.get())
BlockEntityType.Builder.of(BackpackBlockEntity::new, BACKPACK.get(), COPPER_BACKPACK.get(), IRON_BACKPACK.get(), GOLD_BACKPACK.get(), DIAMOND_BACKPACK.get(), NETHERITE_BACKPACK.get())
.build(null));

public static void registerHandlers(IEventBus modBus) {
Expand Down

0 comments on commit c627575

Please sign in to comment.