warjort
Members-
Posts
5420 -
Joined
-
Last visited
-
Days Won
175
Everything posted by warjort
-
Same problem different config file.
-
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.
-
https://www.curseforge.com/minecraft/mc-mods/chunk-animator/comments
-
Conflict between rubidium and chunkanimator. Check you have the latest versions then contact the mod authors.
-
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/
-
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...
-
Doesn't matter. It's still not something we will tell you how to implement. Regardless of your intentions.
-
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.
-
https://forums.minecraftforge.net/topic/89239-excessively-asked-questions-eaq/#comment-415820
-
The game crashed whilst rendering overlay Error
warjort replied to BaraTheUmbraKing's topic in Support & Bug Reports
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 -
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.
-
Custom loot modifier condition, when egg throwen
warjort replied to scorpiathepro's topic in Modder Support
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. -
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
-
https://forums.minecraftforge.net/topic/123416-exit-code-1/
-
https://forums.minecraftforge.net/topic/89239-excessively-asked-questions-eaq/#comment-415820
- 1 reply
-
- 1
-
1.19.2 forge 43.2.0 crashing whilst rendering overlays
warjort replied to kost9mbus .'s topic in Support & Bug Reports
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. -
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.
-
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
-
1.19.2 forge 43.2.0 crashing whilst rendering overlays
warjort replied to kost9mbus .'s topic in Support & Bug Reports
-
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.
-
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.
-
Forge 1.19.3 doesn't start for seemingly no reason
warjort replied to Lucas Augusto Cherubin's topic in Support & Bug Reports
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 -
Forge 1.19.3 doesn't start for seemingly no reason
warjort replied to Lucas Augusto Cherubin's topic in Support & Bug Reports
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/