diff options
| author | Foghrye4 <foghrye4@gmail.com> | 2017-02-07 20:16:24 +0300 |
|---|---|---|
| committer | Foghrye4 <foghrye4@gmail.com> | 2017-02-07 20:16:24 +0300 |
| commit | 2636ccdd67b5f33421ab7f9152021bc4ebc147b3 (patch) | |
| tree | bae55386c0a830ac74eeb5cd09ed7fa27ecc90dc /ihl/items_blocks/ItemSubstance.java | |
| parent | 2db8e30b1d2151fdde5d08a6c06aef55f0c397d2 (diff) | |
Fixed an ore dictionary recipes of Iron workbench which using wrong set of items. Fixed wire recipe input. All recipes of Iron workbench now use fluid container input and will drop an empty container.
Diffstat (limited to 'ihl/items_blocks/ItemSubstance.java')
| -rw-r--r-- | ihl/items_blocks/ItemSubstance.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ihl/items_blocks/ItemSubstance.java b/ihl/items_blocks/ItemSubstance.java index 464878c..d934172 100644 --- a/ihl/items_blocks/ItemSubstance.java +++ b/ihl/items_blocks/ItemSubstance.java @@ -12,10 +12,8 @@ import ihl.utils.IHLUtils; import ihl.worldgen.ores.IHLFluid.IHLFluidType;
import java.util.HashMap;
-import java.util.HashSet;
import java.util.List;
import java.util.Map;
-import java.util.Set;
import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.client.renderer.texture.IIconRegister;
@@ -274,7 +272,7 @@ public class ItemSubstance extends Item implements IItemHasMiniGUI{ CrushedPurifiedBauxite(126, "crushedPurifiedBauxite",true,"Al\u2082O\u2083\u00B7H\u2082O"),
CrushedBauxite(125, "crushedBauxite",true,"Al\u2082O\u2083�H\u2082O + SiO\u2082, Fe\u2082O\u2083"),
SodiumSulfide(124,"dustSodiumSulfide",true,"NaS"),
- SodiumSulfate(123,"dustSodiumSulfate",true,"NaSO\u2084"),
+ SodiumSulfate(123,"dustSodiumSulfate",true,"Na\u2082SO\u2084"),
dustWood(122,"dustWood",true),
Kenotron(121,"valveTube1C21P"),
HighVolatgeCapacitor(120,"highVoltageCapacitor"),
|
