Skip to content

Commit

Permalink
Blacklist various craffting blocks from the crafting station side con…
Browse files Browse the repository at this point in the history
…nection

Notably blacklists furnaces which means an issue with output slot shift clicking is hidden (#5220). May be worth fixing it properly some time
  • Loading branch information
KnightMiner committed May 13, 2024
1 parent d75a16e commit d1994b6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"values": [
"minecraft:furnace",
"minecraft:blast_furnace",
"minecraft:smoker",
"minecraft:brewing_stand",
"tconstruct:crafting_station",
"tconstruct:tinker_station",
"tconstruct:part_builder",
Expand All @@ -8,6 +12,8 @@
"tconstruct:cast_chest",
"tconstruct:basin",
"tconstruct:table",
"tconstruct:smeltery"
"tconstruct:melter",
"tconstruct:smeltery",
"tconstruct:foundry"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,13 @@ public BlockEntityTypeTagProvider(DataGenerator generatorIn, @Nullable ExistingF
@Override
protected void addTags() {
this.tag(TinkerTags.TileEntityTypes.CRAFTING_STATION_BLACKLIST)
.add(TinkerTables.craftingStationTile.get(), TinkerTables.tinkerStationTile.get(), TinkerTables.partBuilderTile.get(),
TinkerTables.partChestTile.get(), TinkerTables.tinkersChestTile.get(), TinkerTables.castChestTile.get(),
TinkerSmeltery.basin.get(), TinkerSmeltery.table.get(), TinkerSmeltery.smeltery.get());
.add(
BlockEntityType.FURNACE, BlockEntityType.BLAST_FURNACE, BlockEntityType.SMOKER, BlockEntityType.BREWING_STAND,
TinkerTables.craftingStationTile.get(), TinkerTables.tinkerStationTile.get(), TinkerTables.partBuilderTile.get(),
TinkerTables.partChestTile.get(), TinkerTables.tinkersChestTile.get(), TinkerTables.castChestTile.get(),
TinkerSmeltery.basin.get(), TinkerSmeltery.table.get(),
TinkerSmeltery.melter.get(), TinkerSmeltery.smeltery.get(), TinkerSmeltery.foundry.get()
);

}

Expand Down

0 comments on commit d1994b6

Please sign in to comment.