use of logisticspipes.gui.modules.GuiAdvancedExtractor in project LogisticsPipes by RS485.
the class AdvancedExtractorModuleSlot method getClientGui.
@Override
public Object getClientGui(EntityPlayer player) {
AsyncAdvancedExtractor module = this.getLogisticsModule(player.getEntityWorld(), AsyncAdvancedExtractor.class);
if (module == null) {
return null;
}
module.getItemsIncluded().setValue(areItemsIncluded);
return new GuiAdvancedExtractor(player.inventory, module);
}
Aggregations