diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-07-05 20:35:43 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-07-05 20:35:43 +1000 |
commit | 3302e20803b5259ae2a8d4cc9e297240f8caf167 (patch) | |
tree | 8b135d514a32106f148c92a23cbf56bc0f12faec /src/Java/gtPlusPlus/plugin/villagers/trade/TradeHandlerBanker.java | |
parent | 4a9e0f9ded8c4f2ed8a0ba3e1d32724887f6c3be (diff) | |
download | GT5-Unofficial-3302e20803b5259ae2a8d4cc9e297240f8caf167.tar.gz GT5-Unofficial-3302e20803b5259ae2a8d4cc9e297240f8caf167.tar.bz2 GT5-Unofficial-3302e20803b5259ae2a8d4cc9e297240f8caf167.zip |
+ 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.
Diffstat (limited to 'src/Java/gtPlusPlus/plugin/villagers/trade/TradeHandlerBanker.java')
-rw-r--r-- | src/Java/gtPlusPlus/plugin/villagers/trade/TradeHandlerBanker.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/plugin/villagers/trade/TradeHandlerBanker.java b/src/Java/gtPlusPlus/plugin/villagers/trade/TradeHandlerBanker.java index d85f86ad57..215dc0683b 100644 --- a/src/Java/gtPlusPlus/plugin/villagers/trade/TradeHandlerBanker.java +++ b/src/Java/gtPlusPlus/plugin/villagers/trade/TradeHandlerBanker.java @@ -14,14 +14,14 @@ public class TradeHandlerBanker extends TradeHandlerBase { @SuppressWarnings("unchecked") @Override public void manipulateTradesForVillager(EntityVillager villager, MerchantRecipeList recipeList, Random random) { - if (villager.getProfession() == 7735) { + //if (villager.getProfession() == 7735) { recipeList.add(new MerchantRecipe(CI.electricMotor_LV, CI.electricPiston_LV, CI.robotArm_LV)); recipeList.add(new MerchantRecipe(CI.electricMotor_MV, CI.electricPiston_MV, CI.robotArm_MV)); recipeList.add(new MerchantRecipe(CI.electricMotor_HV, CI.electricPiston_HV, CI.robotArm_HV)); recipeList.add(new MerchantRecipe(CI.electricMotor_EV, CI.electricPiston_EV, CI.robotArm_EV)); recipeList.add(new MerchantRecipe(CI.electricMotor_IV, CI.electricPiston_IV, CI.robotArm_IV)); - Collections.shuffle(recipeList); - } + //Collections.shuffle(recipeList); + //} } } |