From 3302e20803b5259ae2a8d4cc9e297240f8caf167 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Thu, 5 Jul 2018 20:35:43 +1000 Subject: + Added in a Villager Replacer. $ More work fixing the recipe system. $ Fixed Villagers not using the correct custom trades. % Changed the Industrial sifter requiring exact amounts of in/output busses. --- .../multi/processing/GregtechMetaTileEntity_IndustrialSifter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Java/gtPlusPlus/xmod') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialSifter.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialSifter.java index fa1a0a3aae..a85c9ad5d7 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialSifter.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialSifter.java @@ -218,7 +218,7 @@ extends GregtechMeta_MultiBlockBase { } } } - if ((this.mInputBusses.size() != 1) || (this.mOutputBusses.size() != 4) + if ((this.mInputBusses.size() < 1) || (this.mOutputBusses.size() < 4) || (this.mMaintenanceHatches.size() != 1) || (this.mEnergyHatches.size() < 1)) { Logger.MACHINE_INFO("Returned False 3"); Logger.MACHINE_INFO("Input Buses: "+this.mInputBusses.size()+" | expected: 1"); -- cgit