Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ protected void populate(BlockLootWriter writer) {
writer.dropSelf(SFMBlocks.MANAGER);
writer.dropSelf(SFMBlocks.TUNNELLED_MANAGER);
writer.dropSelf(SFMBlocks.CABLE);
writer.dropSelf(SFMBlocks.BUFFER_BLOCK);
writer.dropOther(SFMBlocks.CABLE_FACADE, SFMBlocks.CABLE);

// Tough cables
Expand All @@ -46,7 +45,9 @@ protected void populate(BlockLootWriter writer) {
protected Set<? extends SFMRegistryObject<Block, ? extends Block>> getExpectedBlocks() {
Set<SFMRegistryObject<Block, ? extends Block>> exclude = Set.of(
SFMBlocks.TEST_BARREL,
SFMBlocks.TEST_BARREL_TANK
SFMBlocks.TEST_BARREL_TANK,
// The buffer block is WIP and has no item outside the IDE.
SFMBlocks.BUFFER_BLOCK
);
HashSet<SFMRegistryObject<Block, ? extends Block>> ourBlocks = new HashSet<>(SFMBlocks.REGISTERER.getOurEntries());
ourBlocks.removeIf(exclude::contains);
Expand Down

This file was deleted.