Newer
Older
void-pack-super-server / work / decompile-ee3ecae0 / net / minecraft / server / ContainerBlastFurnace.java
Simon Lindgren on 26 Mar 2020 517 bytes first commit
package net.minecraft.server;

public class ContainerBlastFurnace extends ContainerFurnace {

    public ContainerBlastFurnace(int i, PlayerInventory playerinventory) {
        super(Containers.BLAST_FURNACE, Recipes.BLASTING, i, playerinventory);
    }

    public ContainerBlastFurnace(int i, PlayerInventory playerinventory, IInventory iinventory, IContainerProperties icontainerproperties) {
        super(Containers.BLAST_FURNACE, Recipes.BLASTING, i, playerinventory, iinventory, icontainerproperties);
    }
}