Merge pull request #292 from TheBritishBrotherhoodTV/1.20.1

Update to Create 6.0.8 (1.20.1)
This commit is contained in:
DrMangoTea
2025-12-09 17:41:16 +01:00
committed by GitHub
2 changed files with 3 additions and 1 deletions

View File

@@ -2487,8 +2487,8 @@ public class TFMGStandardRecipeGen extends TFMGRecipeProvider {
} }
TFMGRecipeProvider.GeneratedRecipe blastModdedCrushedMetal(ItemEntry<? extends Item> ingredient, CommonMetal metal) { TFMGRecipeProvider.GeneratedRecipe blastModdedCrushedMetal(ItemEntry<? extends Item> ingredient, CommonMetal metal) {
String metalName = metal.name;
for (Mods mod : metal.mods) { for (Mods mod : metal.mods) {
String metalName = metal.getName(mod);
ResourceLocation ingot = mod.ingotOf(metalName); ResourceLocation ingot = mod.ingotOf(metalName);
String modId = mod.getId(); String modId = mod.getId();
create(ingot).withSuffix("_compat_" + modId) create(ingot).withSuffix("_compat_" + modId)

View File

@@ -195,6 +195,8 @@ import static com.simibubi.create.foundation.data.TagGen.axeOnly;
import static com.simibubi.create.foundation.data.TagGen.axeOrPickaxe; import static com.simibubi.create.foundation.data.TagGen.axeOrPickaxe;
import static com.simibubi.create.foundation.data.TagGen.pickaxeOnly; import static com.simibubi.create.foundation.data.TagGen.pickaxeOnly;
import static com.simibubi.create.foundation.data.TagGen.tagBlockAndItem; import static com.simibubi.create.foundation.data.TagGen.tagBlockAndItem;
import static com.drmangotea.tfmg.registry.TFMGTags.forgeBlockTag;
import static com.drmangotea.tfmg.registry.TFMGTags.forgeItemTag;
@SuppressWarnings("removal") @SuppressWarnings("removal")
public class TFMGBlocks { public class TFMGBlocks {