This commit is contained in:
HbmMods 2026-05-30 23:39:20 +02:00
parent 4cf6d45ab2
commit 2a6c844dcd
4 changed files with 11 additions and 3 deletions

View File

@ -74,7 +74,7 @@ public class GUICraneExtractor extends GuiInfoContainer {
protected void drawGuiContainerForegroundLayer(int i, int j) {
String name = this.ejector.hasCustomInventoryName() ? this.ejector.getInventoryName() : I18n.format(this.ejector.getInventoryName());
this.fontRendererObj.drawString(name, this.xSize / 2 - this.fontRendererObj.getStringWidth(name) / 2, 6, 4210752);
this.fontRendererObj.drawString(I18n.format("container.inventory"), 8, this.ySize - 96 + 2, 4210752);
this.fontRendererObj.drawString(I18n.format("container.inventory"), 26, this.ySize - 96 + 2, 4210752);
}
@Override

View File

@ -9,6 +9,7 @@ import com.hbm.inventory.recipes.loader.GenericRecipe;
import com.hbm.inventory.recipes.loader.GenericRecipes;
import com.hbm.items.ModItems;
import net.minecraft.init.Items;
import net.minecraft.item.ItemStack;
public class BlastFurnaceRecipesNT extends GenericRecipes<GenericRecipe> {
@ -69,6 +70,13 @@ public class BlastFurnaceRecipesNT extends GenericRecipes<GenericRecipe> {
this.register(new GenericRecipe("blast.paa").setDuration(600)
.inputItems(new OreDictStack(GOLD.ingot()), new ComparableStack(ModItems.plate_mixed, 1))
.outputItems(new ItemStack(ModItems.plate_paa, 1)));
this.register(new GenericRecipe("blast.firebrick").setDuration(800)
.inputItems(new OreDictStack(AL.dust()), new ComparableStack(Items.clay_ball, 7))
.outputItems(new ItemStack(ModItems.ingot_firebrick, 8)));
this.register(new GenericRecipe("blast.firebrickLimestone").setDuration(800)
.inputItems(new OreDictStack(LIMESTONE.ore()), new ComparableStack(Items.clay_ball, 6))
.outputItems(new ItemStack(ModItems.ingot_firebrick, 8)));
}
@Override

View File

@ -222,7 +222,7 @@ public class AnvilRecipes extends SerializableRecipe {
constructionRecipes.add(new AnvilConstructionRecipe(
new AStack[] {
new ComparableStack(Blocks.stonebrick, 4),
new ComparableStack(ModItems.ingot_firebrick, 12),
new ComparableStack(ModItems.ingot_firebrick, 32),
new OreDictStack(CU.plate(), 8)
},
new AnvilOutput(new ItemStack(ModBlocks.machine_blast_furnace))).setTier(1));

View File

@ -55,7 +55,7 @@ public class TileEntityMachineBlastFurnace extends TileEntityMachineBase impleme
super(5);
this.tanks = new FluidTank[2];
this.tanks[0] = new FluidTank(Fluids.AIRBLAST, 4_000);
this.tanks[1] = new FluidTank(Fluids.GAS, 1_000); // TEMP
this.tanks[1] = new FluidTank(Fluids.FLUE, 1_000); // TEMP
}
@Override