Jump to content

turangur

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by turangur

  1. I have an ore I wish to generate less than once per chunk. This is what I came up with to do that. I'm wondering if this will have the intended effect and whether this might break anything else by changing the chunkX and chunkZ 16's to larger numbers. Thanks in advance! for(int i=0; i < 1; i++) { int chunkX = x + random.nextInt(32); int chunkY = random.nextInt(40); int chunkZ = z + random.nextInt(32); (new WorldGenMinable(SudokuuMain.rarite, 5)).generate(world, random, chunkX, chunkY, chunkZ); }
  2. Thank you for the reply! It's not recreating the blocks and items that I wanted to avoid, it was blocking out the old hay and wheat. But if that is the best way of going about it then I'm willing to.
  3. I'm looking to make the items hay and wheat edible, but I'm not sure how to go about doing it. The only way I can think of would be to stop those items from being generated or crafted, and creating entirely new items and blocks to replace them, but if possible I do not want to do that as it sounds extremely complicated and messy. Is there another way to make hay and wheat edible? Any help is appreciated. A link to another forum post I missed or pointing me to a certain area in the code would be helpful. Thanks in advance!
×
×
  • Create New...

Important Information

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