Started by
silent0cicadia
on
Topic category: Help with Minecraft modding (Java Edition)
I want to make a Glass Biome, where obviously everything is glass. Mcreator keeps telling me it is unable to recompile anything because the compiler found errors, but what errors? Its a biome made from glass, default glass too! Any idea as to what may be happening?
UPDATE: I can't even use blocks I made for my mod. For example I want to make a Pink Sand Desert, I select Pink Sand as the ground layer and Pink Sandstone as the underground layer. It still sends me the same error message. But if I use Grass Blocks with Dirt it will work.
Edited by silent0cicadia on Thu, 12/22/2016 - 19:52
Im having the same error ;(
What error are you guys seeing in the console?
@#2
@#2 It's not showing up so here's a link to the picture I took.
Its a recompalation error.
http://invadedsilence.tumblr.com/post/154833199707/ive-been-trying-to-c…
@#2.2 If you click the "Show gradle log" button and upload that image I might be able to help. From the image I saw it looks like you have successfully made the Control Biome, so something is different. I'm guessing you set custom biome colors in the one that works - Is that right?
Im having to same issue. It says in the gradle log that there is a missing symbol
I was having this issue: http://imgur.com/nSRLhZn
The way I was able to work around it was going to my MCreator folder → forge → src → main → java → mod → mcreator. In this folder find the file called mcreator_[name of your biome].java - In this file find this code:
static {
customProps = new Biome.BiomeProperties(“test”);
customProps.setRainfall(0.5F);
customProps.setBaseHeight(0.1F);
customProps.setHeightVariation(0.3F);
customProps.setWaterColor();biome = new BiomeGentest(customProps);
}
Remove(or comment out) the line that I have crossed out above. This works for me. I hope it helps!
Sorry this is the line that should be removed -
customProps.setWaterColor();
@#5 How do you open a .java file? I tried double clicking it and as soon as the window pops up it closes.
@#5.1 I'm on a Mac, so I just right click and "Open With" TextEdit. On Windows, you can use Notepad or Notepad++ to similar effect. Make sure the text editor you're using doesn't append .txt to the file when saving it.
my wont by food if i make it and tree will not work by mcedit beace it can not read the code of the mod and it give error
I got it to work! Thank you very much!