From 5cb4c6e24033cf337812390d99a6817d24d21eab Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Sun, 12 Feb 2017 20:43:03 +0300 Subject: Removed explosion radius limitations. Explosion calculation optimized (reduced memory usage). One more detonator and explosive pack recipe. GT6 recipes for both chemical reactors and cryogenic distiller. Max stack size of muffle furnace is limited to 32. A lot of old features are removed. --- ihl/nei_integration/ElectrolysisBathRecipeHandler.java | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'ihl/nei_integration/ElectrolysisBathRecipeHandler.java') diff --git a/ihl/nei_integration/ElectrolysisBathRecipeHandler.java b/ihl/nei_integration/ElectrolysisBathRecipeHandler.java index 38f10ee..ff07163 100644 --- a/ihl/nei_integration/ElectrolysisBathRecipeHandler.java +++ b/ihl/nei_integration/ElectrolysisBathRecipeHandler.java @@ -1,5 +1,6 @@ package ihl.nei_integration; +import java.awt.Rectangle; import java.util.Map; import ihl.processing.chemistry.ElectrolysisBathGui; @@ -65,6 +66,12 @@ public class ElectrolysisBathRecipeHandler extends MachineRecipeHandler { return "electrolysisBath"; } + + @Override + public void loadTransferRects() + { + this.transferRects.add(new RecipeTransferRect(new Rectangle(115-5,10-10, 172-115, 72), this.getRecipeId(), new Object[0])); + } @Override public Map getRecipeList() -- cgit v1.2.3