Examples of GlowBrewingStand


Examples of net.glowstone.block.state.GlowBrewingStand

public class TEBrewingStand extends TEContainer {

    private int brewTime = 0;

    public TEBrewingStand(GlowBlock block) {
        super(block, new GlowBrewerInventory(new GlowBrewingStand(block, 0)));
        setSaveId("Cauldron");
    }
View Full Code Here

Examples of net.glowstone.block.state.GlowBrewingStand

        tag.putInt("BrewTime", brewTime);
    }

    @Override
    public GlowBlockState getState() {
        return new GlowBrewingStand(block);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.