Everything posted by warjort
-
Minecraft crashes upon opening forge 1.19.2. Code error 1
You have this problem: https://misode.github.io/guides/feature-order-cycle/ Which is a conflict between mods in their worldgen configuration. In your case it can't workout how to do the biome blending for sunflower_plains. One of the mods mentioned is biomesoplenty, the error doesn't say which are the other(s). Like I suggested above, you have a hit a problem that is not easy to debug from just the log. So the only way to find the other mod is to experiment with removing mods until the problem goes away. Backup any worlds you care about before removing mods.
-
Minecraft crashes upon opening forge 1.19.2. Code error 1
Then post it on gist/github or split it up into smaller files.
-
Minecraft crashes upon opening forge 1.19.2. Code error 1
Always post a link to the full log and/or crash report. All you posted is a list of the datapacks. The part where it says "incompatible" is a red-herring. It just means a lot of mods haven't updated their datapack version ids. This is not a real problem unless you have a mod or datapack that really does need some bleeding edge datapack feature (unlikely).
-
The game crashed whilst initializing game Error: java.lang.RuntimeException: null
This is a duplicate of https://forums.minecraftforge.net/topic/122059-minecraft-crashes-upon-opening-forge-1192-code-error-1/#comment-531976
-
Minecraft crashes upon opening forge 1.19.2. Code error -1
Give the game more java heap memory. You currently have 2G, it needs more. How you do that, will depend on which launcher you are using.
-
Minecraft crashes upon opening forge 1.19.2. Code error 1
Now its deepresonance. This is the wrong way to build a modpack. You should not to try to build a modpack by dumping a large number of mods in your mod folder and hope it works. The purpose of this forum is not so you can put the work of building/debugging your modpack on us. If you just keep asking us what the problem is after each fix, eventually you are going to a hit a problem that doesn't have an obvious cause. Then we will no idea which of the 100 or so mods is causing the problem. Instead add mods in small groups and test it. It will be easier to track down which mod is causing a problem. It is one of the few mods you just added.
-
Minecraft crashes upon opening forge 1.19.2. Code error 1
Issue with rftoolsbase. Check you have the latest version then contact the mod author.
-
Minecraft crashes upon opening forge 1.19.2. Code error 1
This thread is a duplicate of https://forums.minecraftforge.net/topic/122035-minecraft-crashes-upon-opening-forge-1192 code-error-1/#comment-531965 Answered there.
-
Minecraft crashes upon opening forge 1.19.2. Code error 1
Issue with the Ding mod. Check you have the latest version then contact the mod author.
-
Error in forge 1.18.2
This is usually caused by a wrong version of java. You need java 17 for 1.18.2 It can also be caused by incorrectly modifying (and breaking) the scripts.
-
Whats fighting create?
Looks like some issue with the "gateways to eternity" mod? Check you have the latest version then contact the mod author. Posting the full log might give more information?
-
I don't really know how to fix that. Can somebody help figure out, what causing error?
You need to post the log, so we can see the "above errors".
-
my server keeps crashing, even tho I have the correct java version installed
You need java 17, mixin does not support java 19
-
Minecraft crashes upon opening forge 1.19.2. Code error 1
You can't have both jei and rei.
-
How do I find what block/coordinates the player is looking at?
player.pick() - method is defined in the Entity class, does ray tracing for an entity On the client, some of the calculations are cached for the player in the Minecraft class, e.g. see how GameRenderer.pick() calculates Minecraft.hitResult or Minecraft.crosshairPickEntity
-
[1.19.2] Creating a Boat?
https://github.com/DakotaPride/Hibernal-Herbs/blob/master/Forge/src/main/java/net/dakotapride/hibernalHerbs/client/render/HibernalEntityRenderers.java Your EntityRenderer doesn't get registered. The correct way to do it is to use the EntityRenderersEvent.RegisterRenderers event: https://github.com/MinecraftForge/MinecraftForge/blob/31e73355c310430ce1816009895b3eff1b5f5fc4/src/main/java/net/minecraftforge/client/event/EntityRenderersEvent.java#L94 It gets fired on the MOD event bus.
-
The game crashed whilst exception in server tick loop Error: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformer
Issue with immersive portals, check you have the latest version then contact the mod author.
-
[1.19.3] Make a block constantly tick?
https://forge.gemwire.uk/wiki/Main_Page This is a support forum, not a human search engine.
-
[1.19.3] Make a block constantly tick?
Use a BlockEntity
-
What is problem at this error?
Please don't post text as images. You should upload your logs/debug.log to a file sharing site. To fix this problem, you need to use java 17, mixin does not support java 19
-
Make a vanilla block change optional via configs (1.18.2)
Optional changes to textures can be made with resource packs. https://minecraft.fandom.com/wiki/Resource_pack
-
I keep getting this error when I am loading in my world in Forge 1.19.2. It gets to 100% and then crashes immediately. Can any
Please don't post logs in the forum. Use a file sharing site. There is no error in that log. If it really is the full log and not just truncated by the forum, post a link to the launcher_log.txt
-
[Solved|1.18.2] Creating New EnchantmentCategory for Custom Enchantment
This how you would do it with forge's pickaxes item tag. item -> ForgeRegistries.ITEMS.tags().getTag(Tags.Items.TOOLS_PICKAXES).contains(item); Alternatively you could do it rhe old fashioned way with a marker interface (or abstract super class) public class MyWoodenHammerItem implements Hammer { ... } public class MyMetalHammerItem implements Hammer { ... } item -> item instanceof Hammer
-
server doesn't launching
Broken config file. It's in the config subfolder. If you have no backup, delete the file and it will be recreated with default values.
-
Internal server error, when joining my local server
Issue with the bloodandgold mod trying to load client classes on the server. Check you have the latest version the contact the mod author.