Examples of handleFuzzyFlagsChange()


Examples of logisticspipes.blocks.crafting.LogisticsCraftingTableTileEntity.handleFuzzyFlagsChange()

  @Override
  public void processPacket(EntityPlayer player) {
    LogisticsCraftingTableTileEntity tile = this.getTile(player.worldObj, LogisticsCraftingTableTileEntity.class);
    if(tile == null) return;
    if(!tile.isFuzzy()) return;
    tile.handleFuzzyFlagsChange(this.getInteger(), this.getInteger2(), player);
  }

  @Override
  public ModernPacket template() {
    return new CraftingTableFuzzyFlagsModifyPacket(getId());
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.