Skip to content

Commit

Permalink
cleanup list of missing content
Browse files Browse the repository at this point in the history
  • Loading branch information
IchHabeHunger54 committed Mar 8, 2024
1 parent 66b5108 commit e253e74
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,15 @@ public interface BCBlocks {
DeferredHolder<Block, DeskBellBlock> DESK_BELL = BCRegistries.BLOCKS.register("desk_bell", () -> new DeskBellBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.IRON_BLOCK).noOcclusion()));
DeferredHolder<Block, FancyArmorStandBlock> IRON_FANCY_ARMOR_STAND = BCRegistries.BLOCKS.register("iron_fancy_armor_stand", () -> new FancyArmorStandBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.IRON_BLOCK).noOcclusion()));
DeferredHolder<Block, SwordPedestalBlock> SWORD_PEDESTAL = BCRegistries.BLOCKS.register("sword_pedestal", () -> new SwordPedestalBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.SMOOTH_STONE).noOcclusion()));
//TODO Clock
//TODO Desk
//TODO Clipboard
//TODO Dinner Plate
//TODO Disc Rack
//TODO Fancy Lamp
//TODO Fancy Lantern
//TODO Fancy Sign
//TODO Fancy Workbench
//TODO Clock
//TODO Desk
//TODO Map Frame
//TODO Painting Frame
//TODO Painting Press
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,29 +37,24 @@ public interface BCItems {
Supplier<DoubleHighBlockItem> IRON_FANCY_ARMOR_STAND = BCRegistries.ITEMS.register("iron_fancy_armor_stand", () -> new DoubleHighBlockItem(BCBlocks.IRON_FANCY_ARMOR_STAND.get(), PROPERTIES));
Supplier<SwordPedestalItem> SWORD_PEDESTAL = BCRegistries.ITEMS.register("sword_pedestal", SwordPedestalItem::new);
Supplier<RedstoneBookItem> REDSTONE_BOOK = BCRegistries.ITEMS.registerItem("redstone_book", RedstoneBookItem::new);
//TODO Atlas
//TODO Big Book
//TODO Clipboard
//TODO Drafting Compass
//TODO Eternal Compass
//TODO Framing Board
//TODO Framing Saw
//TODO Framing Sheet
//TODO Hand Drill
//TODO Lock and Key
//TODO Monocle
//TODO Painting Canvas
//TODO Plumb Line
//TODO Print Press Chase
//TODO Print Press Plate
//TODO Reading Glasses
//TODO Recipe Book
//TODO Seat Back
//TODO Screw Gun
//TODO Slotted Book
//TODO Stockroom Catalog
//TODO Tape Measure
//TODO Tinted Glasses
//TODO Atlas
//TODO Drafting Compass
//TODO Eternal Compass
//TODO Painting Canvas
//TODO Print Press Chase
//TODO Print Press Plate
//TODO Waypoint Compass

/**
Expand Down

0 comments on commit e253e74

Please sign in to comment.