Package net.minecraft.tileentity

Examples of net.minecraft.tileentity.TileEntityCommandBlock


        int worldID = 0;
        int x = 0, y = 0, z = 0;

        if (sender instanceof TileEntityCommandBlock)
        {
            TileEntityCommandBlock cb = (TileEntityCommandBlock) sender;
            worldID = cb.getWorldObj().provider.dimensionId;
            x = cb.xCoord;
            y = cb.yCoord;
            z = cb.zCoord;
        }
View Full Code Here

TOP

Related Classes of net.minecraft.tileentity.TileEntityCommandBlock

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.