use of logisticspipes.gui.modules.GuiApiaristSink in project LogisticsPipes by RS485.
the class ApiaristSinkModuleSlot method getClientGui.
@Override
public Object getClientGui(EntityPlayer player) {
ModuleApiaristSink module = this.getLogisticsModule(player.getEntityWorld(), ModuleApiaristSink.class);
if (module == null) {
return null;
}
module.readFromNBT(getNbt());
return new GuiApiaristSink(module, player);
}
Aggregations