Package net.minecraft.block.BlockPressurePlate

Examples of net.minecraft.block.BlockPressurePlate.Sensitivity


    protected int getMineState (World par1World, int par2, int par3, int par4)
    {
        TileEntityLandmine te = (TileEntityLandmine) par1World.getTileEntity(par2, par3, par4);

        Sensitivity triggerType;

        // Change to return 1 if you want the landmine to blow up when the block
        // holding it is broken
        if (te == null)
        {
View Full Code Here


    public Entity getMineTriggerer (World par1World, int par2, int par3, int par4)
    {

        TileEntityLandmine te = (TileEntityLandmine) par1World.getTileEntity(par2, par3, par4);

        Sensitivity triggerType;

        // Change to return 1 if you want the landmine to blow up when the
        // block holding it is broken
        if (te == null)
        {
View Full Code Here

TOP

Related Classes of net.minecraft.block.BlockPressurePlate.Sensitivity

Copyright © 2018 www.massapicom. 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.