warjort
Members-
Posts
5420 -
Joined
-
Last visited
-
Days Won
175
Everything posted by warjort
-
It is your driver. Either; * Update to the latest version * If that doesn't fix it, try one of the solutions linked here: https://forums.minecraftforge.net/topic/119038-1192-failed-to-run-example-mod-on-fresh-setup/#comment-522788 * Otherwise you need to talk to AMD.
-
There is no error in that log. Post a link to your launcher_log.txt But since the last thing is the log is: It's likely an issue with your graphics card driver.
-
Help me, I don't know why my modpack is crashing
warjort replied to DragonDestroyer999's topic in Support & Bug Reports
https://github.com/TeamMidnightDust/MidnightLib/issues/19 -
Help me, I don't know why my modpack is crashing
warjort replied to DragonDestroyer999's topic in Support & Bug Reports
-
[1.19.4] How can I make a mob invincible to fall damage
warjort replied to Feroov's topic in Modder Support
Override isInvulnerableTo(DamageSource) in your entity. Don't forget to call super to handle other damage sources. -
Broken config file. It can be found in your config subfolder. If you don't have a backup of the file, you can delete it and it will be recreated with default values.
- 1 reply
-
- 1
-
repost (1.19.2 forge 43.2.0) problem with exit code 1
warjort replied to jd101's topic in Support & Bug Reports
Duplicate post. -
Game crashed whilst rendering overlay! Exit code 255
warjort replied to Marcel L's topic in Support & Bug Reports
Some issue with it not being able to find or load the SDL2 native library. I suggest you speak to the controllable mod author. -
I'm not sure what this means, so I don't know how to fix it.
warjort replied to AbbiApple's topic in Support & Bug Reports
You have mods that are not compatible with 1.19.4 - farmer's delight, ecologics, storage drawers and exotic birds. And you also have placebo which is a mod for Minecraft 1.16.5 ! You need to check the mods you download are compatible with the version of minecraft you want to use. e.g. Farmer's delight currently does not have a version compatible with 1.19.4 https://www.curseforge.com/minecraft/mc-mods/farmers-delight/files -
Better Minecraft 1.18.2 Mixin related error
warjort replied to krxwczyk's topic in Support & Bug Reports
This is not Forge. You need to ask wherever Magma provides support. -
One of your mods is not registering its blocks properly. The logs/debug.log might contain additional information? Otherwise there is no indication which mod is causing the problem. You will have to experiment with removing mods until the problem goes away to find it. Backup your world(s) before removing mods.
- 1 reply
-
- 1
-
This will always replace deepslate blocks with deepslate tin. It is the first test to match those blocks. Since mithril has exactly the same conditions there is no case where it could be used. Similary, for the NETHER and END ores only the first could ever be used. If you really do want to mix these ores together in the same "veins", you will need to write your own Feature whose ConfiguredFeature uses a WeightedRandomList or similar mechanic. Otherwise each ConfiguredFeature will need its own List of TargetBlockStates. By the way, don't just post code snippets in the forums. Post all your code on github that is relevant to reproduce the issue (sometimes we have to run/debug the code for ourselves to see issues that are not obvious from just reading the code).
-
[SOLVED][1.19.4] Link vanilla block entity to modded block
warjort replied to JimiIT92's topic in Modder Support
Yes, but look at how my class overrides getType() to ignore that value and return your own. -
[SOLVED][1.19.4] Link vanilla block entity to modded block
warjort replied to JimiIT92's topic in Modder Support
https://github.com/MinecraftForge/MinecraftForge/blob/d4f211b81586d24ab6b734c7815fc067579b09b9/src/main/java/net/minecraftforge/client/event/EntityRenderersEvent.java#L93 But as to why it doesn't work, look at the constructor for LecternBlockEntity and what BlockEntityType it hardwires. In general you can't reuse vanilla blocks because of such hardwiring made by Mojang. In this case, you can probably hack it by doing something like (untested pseudo code): public class MyLecternBlockEntity extends LecternBlockEntity { public MyLecternBlockEntity(BlockPos p_155622_, BlockState p_155623_) { super(p_155622_, p_155623_); } // Make this block entity return your type @Override public BlockEntityType<?> getType() { return MWBlockEntityTypes.SPRUCE_LECTERN.get(); } } public class MyLecternBlock extends LecternBlock { public MyLecternBlock(Properties p_54479_) { super(p_54479_); } // Make the block create your block entity @Override public BlockEntity newBlockEntity(BlockPos p_153573_, BlockState p_153574_) { return new MyLecternBlockEntity(p_153573_, p_153574_); } } but such hacks only work when there isn't other hardcoding elsewhere. e.g. you will also have to use an event to workaround the hardwiring of the LecternBlock instance in Writable/WrittenBookItem.useOn() There might be other places? -
Look in your logs/debug.log You misspelt farm. 🙂 https://github.com/meme2023/my_mod/blob/838b11405464e28ac3d4f46b9f06adf159b95e40/src/main/resources/data/farmsimmod/loot_modifiers/remove_loot_from_grass.json#L9
-
Crash when open inventory, but I can't find what mod did it
warjort replied to qp12furtv's topic in Support & Bug Reports
Looks like you are missing the obscureapi mod? -
Error code fml.modloading.dupedmod but no duplicate mods?
warjort replied to a_mod_guy's topic in Support & Bug Reports
You are talking to yourself. 1.16.x is not supported here: https://forums.minecraftforge.net/topic/91712-supported-version-directory/ -
Don't post snippits in the forum. and what you posted is horribly formatted. It also gives no clue to where those json files are located, what they are called or show all the necessary code (like the registration process). Put your code on github where we can see everything in context. Here's one I made a while ago, explaining all the steps: https://forums.minecraftforge.net/topic/113816-1182-method-for-iterating-over-blocks-belonging-to-a-tag/#comment-505993 although the part about the "block tag loot item condition" is optional unless you want to use block tags.
-
No. These are the Forge support forums. We help with problems related to the Forge mod loader. We don't fix modpacks or other people's mods. The best we can do is tell you which mod is causing the problem so you know who to contact to get help.
-
From the subheader of this forum.
-
You should report it is a bug to the mod author, see my comment above. But I bet this is a concurrency (race condition) issue. It wouldn't suprise me if you try to the load the game again, you don't get the error. But sometimes you do get the error at random? Otherwise you will just have the remove the mod until the mod author fixes the problem.