Biome is Unable to Be Made 1.10.2

Started by silent0cicadia on

Topic category: Help with modding (Java Edition)

Last seen on 22:32, 28. Jun 2022
Joined Feb 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Biome is Unable to Be Made 1.10.2
Thu, 12/22/2016 - 19:52 (edited)

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
Last seen on 08:33, 15. Jul 2021
Joined Mar 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Im having the same error ;(
Thu, 12/22/2016 - 22:16

Im having the same error ;(

Last seen on 16:18, 24. Dec 2016
Joined Dec 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
What error are you guys
Fri, 12/23/2016 - 02:51

What error are you guys seeing in the console?

Last seen on 22:32, 28. Jun 2022
Joined Feb 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
RE:What error are you guys
Fri, 12/23/2016 - 03:30

@#2

Last seen on 16:18, 24. Dec 2016
Joined Dec 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
RE:RE:What error are you guys
Fri, 12/23/2016 - 03:39

@#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?

Last seen on 10:59, 15. Jul 2017
Joined Feb 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Im having to same issue. It
Fri, 12/23/2016 - 12:59

Im having to same issue. It says in the gradle log that there is a missing symbol

Last seen on 16:18, 24. Dec 2016
Joined Dec 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I was having this issue: http
Fri, 12/23/2016 - 14:34

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! 

Last seen on 16:18, 24. Dec 2016
Joined Dec 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Sorry this is the line that
Fri, 12/23/2016 - 14:48

Sorry this is the line that should be removed - 

customProps.setWaterColor();

 

 

Last seen on 22:32, 28. Jun 2022
Joined Feb 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
RE:Sorry this is the line that
Fri, 12/23/2016 - 18:53

@#5 How do you open a .java file? I tried double clicking it and as soon as the window pops up it closes.

Last seen on 16:18, 24. Dec 2016
Joined Dec 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
RE:RE:Sorry this is the line that
Fri, 12/23/2016 - 22:59

@#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.

Last seen on 16:38, 10. Dec 2019
Joined Mar 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
my wont by food if i make it
Sat, 12/24/2016 - 14:44

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 

Last seen on 22:32, 28. Jun 2022
Joined Feb 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
RE:RE:RE:Sorry this is the line that
Mon, 12/26/2016 - 03:15

I got it to work! Thank you very much!