Package calclavia.api.mffs.EventForceManipulate

Examples of calclavia.api.mffs.EventForceManipulate.EventCheckForceManipulate


    if (Blacklist.forceManipulationBlacklist.contains(position.getBlockID()))
    {
      return false;
    }

    EventCheckForceManipulate evt = new EventCheckForceManipulate(position.world, position.intX(), position.intY(), position.intZ(), target.intX(), target.intY(), target.intZ());
    MinecraftForge.EVENT_BUS.post(evt);

    if (evt.isCanceled())
    {
      return false;
    }

    TileEntity tileEntity = position.getTileEntity();
View Full Code Here

TOP

Related Classes of calclavia.api.mffs.EventForceManipulate.EventCheckForceManipulate

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.