Jump to content

EOT3000

Members
  • Posts

    16
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by EOT3000

  1. The thread is at https://www.reddit.com/r/feedthebeast/comments/5x0twz/investigating_extreme_worldgen_lag/ one of the comments says you could multithread. I already tried it. You are right it doesn't work. The world generates as slow as without multithreading.
  2. 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?
  3. I am trying to get a block state from a block by doing Blocks.HARDENED_STAINED_CLAY.getStateById();. But when I go into the game, I don't get the right block. I figured out that getStateById doesn't work with what I am trying to do. Which method do I use though?
  4. 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?
  5. I don't own any domain, what should I name the package?
  6. By the time some one answered, I already figured it out
  7. What would I use instead of BlockHelper.forBlock in forge 1.12.2?
  8. How can I generate ores in other dimensions? I already figured out how to generate in the overworld, but if I run the code with a different world in the arguments, the game crashes. Code: https://pastebin.com/TvCCh5NF Does anyone have an answer?
  9. I pressed run in the ide so I think that I built with the ide
  10. Where do I find the [modid]-[version].jar file? log is pastebin.com/UPuTtV57
  11. 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?
×
×
  • Create New...

Important Information

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