Topic category: Troubleshooting, bugs, and solutions
Hi ! I'm here because i need some help
I'm trying to create a biome but every time i recompile, i'll get an error about the water color while i didn't put any color, i didn't check the button ! I get this error log :
warning: [options] bootstrap class path not set in conjunction with -source 1.6
C:\Pylo\MCreator175\forge\build\sources\main\java\mod\mcreator\mcreator_lostIsles.java:31: error: method setWaterColor in class BiomeProperties cannot be applied to given types;
customProps.setWaterColor();
^
required: int
found: no arguments
reason: actual and formal argument lists differ in length
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
1 error
1 warningFAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':compileJava'.
> Compilation failed; see the compiler error output for details.* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
Thanks if you read or respond !
There needs to be a water color. it's what the error says. What I suggest is filling in the default Minecraft Water color in the code editor if you don't want to change the color of the water in your biome.
You can convert this Hexadecimal code for minecraft's water into an int color if required, this color is almost exactly if not excatly the color of minecraft's default water: #423cf7
Thanks you Jasper ;)