Package mffs.event

Examples of mffs.event.BlockPreMoveDelayedEvent


      TileEntity tileEntity = position.getTileEntity(this.worldObj);
      int blockID = position.getBlockID(this.worldObj);

      if (!this.worldObj.isAirBlock(position.intX(), position.intY(), position.intZ()) && tileEntity != this)
      {
        queueEvent(new BlockPreMoveDelayedEvent(this, getMoveTime(), this.worldObj, position, newPosition));
        return true;
      }
    }

    return false;
View Full Code Here

TOP

Related Classes of mffs.event.BlockPreMoveDelayedEvent

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.