Examples of LogisticsSimpleFilterModule


Examples of logisticspipes.modules.abstractmodules.LogisticsSimpleFilterModule

    super(id);
  }
 
  @Override
  public Object getClientGui(EntityPlayer player) {
    LogisticsSimpleFilterModule module = this.getLogisticsModule(player.getEntityWorld(), LogisticsSimpleFilterModule.class);
    if(module == null) return null;
    return new GuiSimpleFilter(player.inventory, module);
  }
View Full Code Here

Examples of logisticspipes.modules.abstractmodules.LogisticsSimpleFilterModule

    return new GuiSimpleFilter(player.inventory, module);
  }

  @Override
  public DummyContainer getContainer(EntityPlayer player) {
    LogisticsSimpleFilterModule module = this.getLogisticsModule(player.getEntityWorld(), LogisticsSimpleFilterModule.class);
    if(module == null) return null;
    DummyContainer dummy = new DummyContainer(player.inventory, module.getFilterInventory());
    dummy.addNormalSlotsForPlayerInventory(8, 60);

    //Pipe slots
      for(int pipeSlot = 0; pipeSlot < 9; pipeSlot++){
        dummy.addDummySlot(pipeSlot, 8 + pipeSlot * 18, 18);
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.