diff options
author | David Vierra <codewarrior@hawaii.rr.com> | 2018-03-13 08:03:39 -1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-13 08:03:39 -1000 |
commit | 32e5cac89856c99539b1ec634388dc319f2569a2 (patch) | |
tree | d49bb13ebd6da36fab6eb5b239d2ea15121029cf /src/Java | |
parent | c1bbee9f5f71dd82ca0aef2669d52a34b65fcc2d (diff) | |
download | GT5-Unofficial-32e5cac89856c99539b1ec634388dc319f2569a2.tar.gz GT5-Unofficial-32e5cac89856c99539b1ec634388dc319f2569a2.tar.bz2 GT5-Unofficial-32e5cac89856c99539b1ec634388dc319f2569a2.zip |
Fix GT++ `xpjuice` fluid overriding OpenBlocks fluid
Fixes issues where the OpenBlocks XP Drain will fill tanks with GT++ `xpjuice`, which cannot be pulled out using a bucket.
After this change, any tanks containing the GT++ juice will auto convert to the OpenBlocks juice.
Diffstat (limited to 'src/Java')
-rw-r--r-- | src/Java/gtPlusPlus/GTplusplus.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/GTplusplus.java b/src/Java/gtPlusPlus/GTplusplus.java index 235b314001..ce2db22f74 100644 --- a/src/Java/gtPlusPlus/GTplusplus.java +++ b/src/Java/gtPlusPlus/GTplusplus.java @@ -50,7 +50,7 @@ import gtPlusPlus.xmod.gregtech.loaders.RecipeGen_Recycling; import net.minecraftforge.oredict.OreDictionary; @MCVersion(value = "1.7.10") -@Mod(modid = CORE.MODID, name = CORE.name, version = CORE.VERSION, dependencies = "required-after:Forge; before:TConstruct; after:PlayerAPI; after:dreamcraft; after:IC2; after:ihl; after:psychedelicraft; after:gregtech; after:Forestry; after:MagicBees; after:CoFHCore; after:Growthcraft; after:Railcraft; after:CompactWindmills; after:ForbiddenMagic; after:MorePlanet; after:PneumaticCraft; after:ExtraUtilities; after:Thaumcraft; after:rftools; after:simplyjetpacks; after:BigReactors; after:EnderIO; after:tectech; after:GTRedtech; after:beyondrealitycore;") +@Mod(modid = CORE.MODID, name = CORE.name, version = CORE.VERSION, dependencies = "required-after:Forge; before:TConstruct; after:PlayerAPI; after:dreamcraft; after:IC2; after:ihl; after:psychedelicraft; after:gregtech; after:Forestry; after:MagicBees; after:CoFHCore; after:Growthcraft; after:Railcraft; after:CompactWindmills; after:ForbiddenMagic; after:MorePlanet; after:PneumaticCraft; after:ExtraUtilities; after:Thaumcraft; after:rftools; after:simplyjetpacks; after:BigReactors; after:EnderIO; after:tectech; after:GTRedtech; after:beyondrealitycore; after:OpenBlocks;") public class GTplusplus implements ActionListener { //Mod Instance @@ -257,4 +257,4 @@ public class GTplusplus implements ActionListener { //Force - Alloying mGregMatLoader.enableMaterial(Materials.Force); } -}
\ No newline at end of file +} |