aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/core/intermod/psychedelicraft
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-06-29 19:24:32 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-06-29 19:24:32 +1000
commitf0418333ed443ceddf78c7658737dac697462b59 (patch)
tree87f05e08af154dccc1cb68fb387d37ee5351f4e4 /src/Java/miscutil/core/intermod/psychedelicraft
parent60f0d09e5f094cea82ad0e25e93934a8c0aed1be (diff)
downloadGT5-Unofficial-f0418333ed443ceddf78c7658737dac697462b59.tar.gz
GT5-Unofficial-f0418333ed443ceddf78c7658737dac697462b59.tar.bz2
GT5-Unofficial-f0418333ed443ceddf78c7658737dac697462b59.zip
Think I've fixed bad textured registration.
All fluids should now have valid textures or textures missing within the <MiscUtils> domain.
Diffstat (limited to 'src/Java/miscutil/core/intermod/psychedelicraft')
-rw-r--r--src/Java/miscutil/core/intermod/psychedelicraft/fluids/PS_Fluids.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Java/miscutil/core/intermod/psychedelicraft/fluids/PS_Fluids.java b/src/Java/miscutil/core/intermod/psychedelicraft/fluids/PS_Fluids.java
index 2d2af56967..641979408a 100644
--- a/src/Java/miscutil/core/intermod/psychedelicraft/fluids/PS_Fluids.java
+++ b/src/Java/miscutil/core/intermod/psychedelicraft/fluids/PS_Fluids.java
@@ -18,15 +18,15 @@ public class PS_Fluids {
public static void registerFluids(){
alcJD = new FluidAlcohol("psc_JD", 2, 0.45D, 1.9D, 0.15D, PSConfig.alcInfoPotato);
- alcJD.addName(CORE.MODID + "drinkMash", new IntegerRange(0, -1), new IntegerRange(0, 0));
- alcJD.addName(CORE.MODID + "drinkAgedWhisky", new IntegerRange(0, 0), new IntegerRange(1, -1));
- alcJD.addName(CORE.MODID + "drinkWhisky", new IntegerRange(0, -1), new IntegerRange(1, -1));
+ alcJD.addName(CORE.MODID + ":" + "drinkMash", new IntegerRange(0, -1), new IntegerRange(0, 0));
+ alcJD.addName(CORE.MODID + ":" + "drinkAgedWhisky", new IntegerRange(0, 0), new IntegerRange(1, -1));
+ alcJD.addName(CORE.MODID + ":" + "drinkWhisky", new IntegerRange(0, -1), new IntegerRange(1, -1));
alcJD.setColor(-1426150904);
- alcJD.setStillIconName(CORE.MODID + "mash_still");
- alcJD.setFlowingIconName(CORE.MODID + "mash_flow");
- alcJD.addIcon(new IntegerRange(-1, -1), new IntegerRange(0, 3), new IntegerRange(2, -1), CORE.MODID + "clear_still", CORE.MODID + "clear_flow");
- alcJD.addIcon(new IntegerRange(-1, -1), new IntegerRange(4, 13), new IntegerRange(0, -1), CORE.MODID + "rum_semi_mature_still", CORE.MODID + "rum_semi_mature_flow");
- alcJD.addIcon(new IntegerRange(-1, -1), new IntegerRange(14, -1), new IntegerRange(0, -1), CORE.MODID + "rum_mature_still", CORE.MODID + "rum_mature_flow");
+ alcJD.setStillIconName(CORE.MODID + ":" + "mash_still");
+ alcJD.setFlowingIconName(CORE.MODID + ":" + "mash_flow");
+ alcJD.addIcon(new IntegerRange(-1, -1), new IntegerRange(0, 3), new IntegerRange(2, -1), CORE.MODID + ":" + "clear_still", CORE.MODID + ":" + "clear_flow");
+ alcJD.addIcon(new IntegerRange(-1, -1), new IntegerRange(4, 13), new IntegerRange(0, -1), CORE.MODID + ":" + "rum_semi_mature_still", CORE.MODID + ":" + "rum_semi_mature_flow");
+ alcJD.addIcon(new IntegerRange(-1, -1), new IntegerRange(14, -1), new IntegerRange(0, -1), CORE.MODID + ":" + "rum_mature_still", CORE.MODID + ":" + "rum_mature_flow");
FluidRegistry.registerFluid(alcJD);
}