Skip to content

Commit

Permalink
Add missing tags to slimy grass (#5089)
Browse files Browse the repository at this point in the history
  • Loading branch information
KnightMiner committed Apr 27, 2023
1 parent 39f2b20 commit d462bdb
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@
"tconstruct:bloodshroom_wood",
"tconstruct:sky_slime_vine",
"tconstruct:ender_slime_vine",
"tconstruct:earth_slime_tall_grass",
"tconstruct:sky_slime_tall_grass",
"tconstruct:ichor_slime_tall_grass",
"tconstruct:ender_slime_tall_grass",
"tconstruct:blood_slime_tall_grass",
"tconstruct:earth_slime_fern",
"tconstruct:sky_slime_fern",
"tconstruct:ichor_slime_fern",
"tconstruct:ender_slime_fern",
"tconstruct:blood_slime_fern",
"tconstruct:crafting_station",
"tconstruct:tinker_station",
"tconstruct:part_builder",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"replace": false,
"values": [
"tconstruct:earth_slime_tall_grass",
"tconstruct:sky_slime_tall_grass",
"tconstruct:ichor_slime_tall_grass",
"tconstruct:ender_slime_tall_grass",
"tconstruct:blood_slime_tall_grass",
"tconstruct:earth_slime_fern",
"tconstruct:sky_slime_fern",
"tconstruct:ichor_slime_fern",
"tconstruct:ender_slime_fern",
"tconstruct:blood_slime_fern"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ private void addWorld() {
}));
TinkerWorld.slimeDirt.forEach((type, block) -> this.tag(type.getDirtBlockTag()).add(block));
endermanHoldable.addTag(TinkerTags.Blocks.SLIMY_SOIL);
tagBlocks(BlockTags.REPLACEABLE_PLANTS, TinkerWorld.slimeTallGrass, TinkerWorld.slimeFern);

Consumer<Block> flowerPotAppender = this.tag(BlockTags.FLOWER_POTS)::add;
TinkerWorld.pottedSlimeFern.forEach(flowerPotAppender);
Expand Down Expand Up @@ -393,6 +394,7 @@ private void addHarvest() {
tagLogs(MINEABLE_WITH_AXE, NEEDS_IRON_TOOL, TinkerWorld.bloodshroom);
tagPlanks(MINEABLE_WITH_SHOVEL, TinkerWorld.greenheart, TinkerWorld.skyroot, TinkerWorld.bloodshroom);
tagBlocks(MINEABLE_WITH_AXE, TinkerWorld.skySlimeVine, TinkerWorld.enderSlimeVine);
tagBlocks(MINEABLE_WITH_AXE, TinkerWorld.slimeTallGrass, TinkerWorld.slimeFern);
tagBlocks(MINEABLE_WITH_PICKAXE, TinkerWorld.earthGeode, TinkerWorld.skyGeode, TinkerWorld.ichorGeode, TinkerWorld.enderGeode);

// smeltery
Expand Down

0 comments on commit d462bdb

Please sign in to comment.