Jump to content

warjort

Members
  • Posts

    5420
  • Joined

  • Last visited

  • Days Won

    175

Everything posted by warjort

  1. Same problem different config file.
  2. I'm obviously just wasting my time. My previous response contains a link to some code by somebody who knows how to "correctly" register ConfiguredFeatures in 1.18 using a DeferredRegister<ConfiguredFeature> Yours tries to lookup blocks that don't exist yet and then register them in the vanilla builtin registries.
  3. https://www.curseforge.com/minecraft/mc-mods/chunk-animator/comments
  4. Conflict between rubidium and chunkanimator. Check you have the latest versions then contact the mod authors.
  5. Sorry, but you are just talking to yourself unless you show what you talking about. We have no psychic powers. Although I suspect, you just don't understand how Suppliers (deferred access) works? Example from a recent thread: https://forums.minecraftforge.net/topic/123364-defective-ore-generation/
  6. Of course it is possible. You are just doing it wrong. From that link I posted earlier that you didn't read (the part that says IMPORTANT): https://forge.gemwire.uk/wiki/Registration#DeferredRegister Bad constructor (no way to pass an item in static initialisation): MyCrystalOreBlock(Item item) Good constructor (deferred access) MyCrystalOreBlock(RegistryObject<Item> itemRegistryObject) // or equivalently Supplier<Item> And it's not like this question hasn't been asked many times before in this forum. oh wait...
  7. Doesn't matter. It's still not something we will tell you how to implement. Regardless of your intentions.
  8. Bots are not supported in this forum. Even if you are not writing a bot, we don't help with the tech used to write cheats.
  9. https://forums.minecraftforge.net/topic/89239-excessively-asked-questions-eaq/#comment-415820
  10. That is the curseforge log. If you want help with curseforge: https://support.curseforge.com/en/support/home This is the MinecraftForge support forum (not the same thing as Curseforge). If you want help with MinecraftForge: https://forums.minecraftforge.net/topic/89239-excessively-asked-questions-eaq/#comment-415820
  11. Paraphrasing those links since it looks like you are too lazy to read them yourself. Don't call get() until you really need the value. After the RegisterEvent has been fired. You certainly can't do it in the static initialisation of a class.
  12. Thrown eggs don't use loot tables. See ThrownEgg.onHit() If you want to do something similar for a projectile you didn't write: https://github.com/MinecraftForge/MinecraftForge/blob/1.19.x/src/main/java/net/minecraftforge/event/entity/ProjectileImpactEvent.java On the second part, I have no idea. If you just post snippets out of context you should expect to have your question ignored. Anyway since this is one of your first posts: This is your loot modifier. How it works is completely up to you. You can't expect us to support your code. Especially when you don't even show it.
  13. You can't dereference RegistryObjects until after the underlying objects are registered. https://forge.gemwire.uk/wiki/Registration https://forge.gemwire.uk/wiki/Stages_of_Modloading
  14. https://forums.minecraftforge.net/topic/123416-exit-code-1/
  15. https://forums.minecraftforge.net/topic/89239-excessively-asked-questions-eaq/#comment-415820
  16. Please stop posting logs in the forum. Use a file sharing site. Anyway: You have many mods that want a more recent version of Forge. Use the latest version.
  17. There is no error in that log. The last thing in that log is so most likely you have some mod crashing the game without logging the error. Post a link to the launcher_log.txt from directly after the crash to see if the launcher logged the error.
  18. The last thing in the log is that, so I would guess there is something wrong with the config/fml.toml file. If you don't have a backup, delete the file and it will be recreated with default values. If that doesn't fix it, post a link to the launcher_log.txt
  19. I have trouble reading that log as well. Don't post them in the forums, use a file sharing site. The above is the first error in what you show. There's a number of other errors from geckolib which may or may not be related to this error? Check you have the latest version of these mods then contact the mod authors.
  20. Gradle flatdir is not a maven repository. https://docs.gradle.org/current/userguide/declaring_repositories.html#sec:repository-types You need to ask wherever gradle provides support what it means by that.
  21. Why are calling toString() on your Component and then wrapping that in another Component? A java.lang.String is just an array of unicode characters. It has no way to understand or store Minecraft's style attachments.
  22. This is the link to a possible solution if you can't get the latest version of their driver to work. https://forums.minecraftforge.net/topic/119038-1192-failed-to-run-example-mod-on-fresh-setup/#comment-522788
  23. You are like the 20th person to report this in the last couple of days. I'm pretty sure AMD released a driver update and broke things? https://forums.minecraftforge.net/topic/123416-exit-code-1/
  24. Confirmed crash in the graphics card driver. Read that link I posted above about the suggestion to install a previous known to work version of the driver if the latest version doesn't work for you. But as I keep saying, you really need to contact AMD for help with their broken driver.
×
×
  • Create New...

Important Information

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