Jump to content

EOT3000

Members
  • Posts

    16
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by EOT3000

  1. My console prints this error:

    [11:50:58] [Server thread/WARN] [FML]: Much more stuff mod! loaded a new chunk [7456, 15079] in dimension 0 (overworld) while populating chunk [7455, 15082], causing cascading worldgen lag.
    [11:50:58] [Server thread/WARN] [FML]: Please report this to the mod's issue tracker. This log can be disabled in the Forge config.

    tens of times. What can I do to fix it?

  2. I tried this in my generate method in my world generation class:

    		case(0):		
    			if(world.getBiome(new BlockPos(chunkX, 64, chunkZ + random.nextInt(16))).getClass().equals(MineralBiome.class)) {
    				generateHuge(random, chunkX, chunkZ, world, chunkGenerator, chunkProvider);
    				break;
    			}
    			generateOverworld(random, chunkX, chunkZ, world, chunkGenerator, chunkProvider);
    			break;

    And it worked until I made the biome have less weight, and it stopped generating. How can I have special generation so it works?

  3. I am making a Minecraft mod using the 14.23.4.2705 mdk. It works in eclipse but when I put it in the Minecraft mods folder and try to run, it throws a NoSuchFieldError. Apparently, the mod wasn't obfuscated, but I can't find anything that can obfuscate it. Does anyone know how I can fix my mod?

    • Like 1
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.