diff options
author | Jason Mitchell <mitchej@gmail.com> | 2023-05-01 02:45:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-01 11:45:56 +0200 |
commit | b2c8cfb4ec8b82337a95f51364277964ec968b52 (patch) | |
tree | d4cf94acc93249cd649b33ec13c5b0d75f1f75db /src/main/java/Ic2ExpReactorPlanner/ComponentFactory.java | |
parent | d2eda84e457d549ad9a51f40e9dd159147a141f8 (diff) | |
download | GT5-Unofficial-b2c8cfb4ec8b82337a95f51364277964ec968b52.tar.gz GT5-Unofficial-b2c8cfb4ec8b82337a95f51364277964ec968b52.tar.bz2 GT5-Unofficial-b2c8cfb4ec8b82337a95f51364277964ec968b52.zip |
ForgeDirection (#608)
* ForgeDirection WIP
* Fix GTPP_Render_MachineBlock
Fix handling of getTexture with facing mask for pipes
Kill a bunch of magic numbers
* spotlessApply (#612)
Co-authored-by: GitHub GTNH Actions <>
* Bump bw/tt deps
---------
Co-authored-by: Léa Gris <lea.gris@noiraude.net>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/main/java/Ic2ExpReactorPlanner/ComponentFactory.java')
-rw-r--r-- | src/main/java/Ic2ExpReactorPlanner/ComponentFactory.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/java/Ic2ExpReactorPlanner/ComponentFactory.java b/src/main/java/Ic2ExpReactorPlanner/ComponentFactory.java index c7a3bc7b46..9a43ca0056 100644 --- a/src/main/java/Ic2ExpReactorPlanner/ComponentFactory.java +++ b/src/main/java/Ic2ExpReactorPlanner/ComponentFactory.java @@ -12,6 +12,8 @@ import java.util.HashMap; import java.util.LinkedHashMap; import java.util.Map; +import com.github.bartimaeusnek.bartworks.system.material.BW_NonMeta_MaterialItems; + import Ic2ExpReactorPlanner.components.Condensator; import Ic2ExpReactorPlanner.components.CoolantCell; import Ic2ExpReactorPlanner.components.Exchanger; @@ -20,9 +22,6 @@ import Ic2ExpReactorPlanner.components.Plating; import Ic2ExpReactorPlanner.components.ReactorItem; import Ic2ExpReactorPlanner.components.Reflector; import Ic2ExpReactorPlanner.components.Vent; - -import com.github.bartimaeusnek.bartworks.system.material.BW_NonMeta_MaterialItems; - import gregtech.api.enums.ItemList; import gregtech.api.objects.GT_ItemStack; import gregtech.api.util.GT_ModHandler; |