[1.11.2] Build fails with missing 'MekanismFluids' symbol
Ristovski opened this issue ยท 1 comments
Using the latest 1.11 branch, the build fails because of a missing import that is then used in MekanismUtils.java
Adding a simple import mekanism.common.MekanismFluids
fixes this issue.
/home/rafael/.usr/git/mc/Mekanism/build/sources/main/java/mekanism/common/util/MekanismUtils.java:852: error: cannot find symbol
return new FluidStack(MekanismFluids.HeavyWater, 10);
^
symbol: variable MekanismFluids
location: class MekanismUtils
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
1 error
:compileJava FAILED
See pull request #4297