All Activity
- Today
- Medium-sized modpack crashing when loading new chunks occasionally. (crash report)
-
kayratrends joined the community
-
[1.20.1] Custom Effect Help
Currently stuck on making a custom effect for forge 1.20.1 Im trying to add a certain number of hearts to a player once they consume a potion/custom item, i tried doing it with the vanilla effects and it didn't work the way i wanted it to work, so now im trying to make a custom effect that adds this configurable amount of hearts So far Ive been following KaupanJoes tutorial for both 1.21 and 1.20 and the effect doesn't seem to give any errors nor does its registration, however i cant seem to get it to work with applying it to the item itself ```package com.curseofaros.item; import com.curseofaros.effect.ModEffects; import net.minecraft.world.effect.MobEffectInstance; import net.minecraft.world.effect.MobEffects; import net.minecraft.world.food.FoodProperties; public class ModFoods { public static final FoodProperties FLASK_OF_LIFE = new FoodProperties.Builder() .fast() .alwaysEat() .nutrition(0) .saturationMod(0) .effect(() -> new MobEffectInstance(MobEffects.HEAL, 1, 2), 1.0f) .build(); public static final FoodProperties MEDIUM_POTION = new FoodProperties.Builder() .fast() .alwaysEat() .nutrition(0) .saturationMod(0) .effect(() -> new MobEffectInstance(ModEffects.MEDIUM_POTION_EFFECT.get())) .build(); public static final FoodProperties SMALL_POTION = new FoodProperties.Builder() .fast() .alwaysEat() .nutrition(0) .saturationMod(0) .effect(() -> new MobEffectInstance(MobEffects.HEAL, 1, 3), 1.0f) .build(); } (Sorry for the real shi formatting, don't really know how to do it smh, note im also fairly new to Java so i don't know a lot, please be patient and let me know if the error is simply a lack of understand of Java principles)
-
vastlysucks joined the community
- Medium-sized modpack crashing when loading new chunks occasionally. (crash report)
-
-
DarkerLighter joined the community
- Yesterday
-
SweetLittleAngel joined the community
-
Soypixel301 joined the community
-
Medium-sized modpack crashing when loading new chunks occasionally. (crash report)
crashlog: https://pastebin.com/mW43VxdU (was ran through mclo.gs beforehand but realized i need to make it a pastebin, may have artifacts from mclo.gs) Context: had same crash from loading ocean chunks, just had it again from tp'ing to a Yung's Better Nether Fortress. I have BetterRandomSourceConcurrencyCrash enabled.
-
werrrew joined the community
- java.lang.IllegalStateException: Some intrusive holders were not registered
- java.lang.IllegalStateException: Some intrusive holders were not registered
-
swetoby joined the community
- java.lang.IllegalStateException: Some intrusive holders were not registered
- java.lang.IllegalStateException: Some intrusive holders were not registered
-
JacobRigatuso joined the community
- made a modpack but i get this error every time i try to launch minecraft
-
Failed to load resource META-INF/jarjar/metadata.json
These are the forge forums, you would need to ask wherever neoforged support is given.
- Last week
-
landon7 joined the community
-
Shotlink joined the community
-
Failed to load resource META-INF/jarjar/metadata.json
Hello, i'm trying to launch a server with additional mods i've added myself, and it isn't launching - but scrolling through the debug.log i came across [main/TRACE] [net.neoforged.fml.loading.moddiscovery.locators.JarInJarDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from MixinSquared-0.2.0-beta.6.jar, it does not contain dependency information. which came up a lot - im just wondering if this could be why my server won't launch
-
Orbital strike cannon fishing rod mod
Also did you quit making this?
-
made a modpack but i get this error every time i try to launch minecraft
[main/ERROR]:Failed reading REFMAP JSON from : java.lang.NullPointerException Cannot invoke "org.spongepowered.asm.mixin.refmap.ReferenceMapper.setResourceName(String)" because "mapper" is null this is the error message i keep getting when trying to launch minecraft from the launcher with my mods but i just can't figure out what this error message means. i'm new to making mod packs but i have tried making 3 separate mod packs with different mods but i still run into this issue and i am starting to think there might be a conflict between 2 different mods but again i have no idea since this is the only error message i get. any idea's?
-
-
The game crashed: rendering overlay Error: com.electronwill.nightconfig.core.io.WritingException: An I/O error occured
Add the crash-report or latest.log (logs-folder) with sites like https://mclo.gs/ and paste the link to it here
-
-
The game crashed: rendering overlay Error: com.electronwill.nightconfig.core.io.WritingException: An I/O error occured
i have downloaded a mod called All in One (Modded One Block) and downloaded it through essentials mod to play with my friends, it starts to load up and start loading into the game but then i get the crash report and get sent back to the launcher with the error code "The game crashed: rendering overlay Error: com.electronwill.nightconfig.core.io.WritingException: An I/O error occured".
-
How Do I Commission A Mod
There typically isnt a place to commission mods. Mods are made by hobbyist programmers in their spair time. You could try some general minecraft modding discords, but I dont have any to recommend.
-
jarJar not working
minecraftLibrary is required for dev time for it to load. jarJar should be enough for runtime. be sure you're running the latest forge. And make sure you post your debug log.
- REI not showing recipes anymore
-
How Do I Commission A Mod
I want to make an anime mod for 1.20.1 forge, but don't know how to do anything. I'm trying to find people to make models, animations, stat page, leveling mechanic, and someone who can import/create sound effects/BGM.
-
jarJar not working
It still doesn't work
- Having an issue
-
Orbital strike cannon fishing rod mod
FoxyWoxy In Wemmbus videos the stab shots are with tnt minecarts and not tnt. And the nuke shots are spaced out and all come from a single compressed tnt block and expand suddenly. Yours works fine but I would appreciate that change in the future. Thanks!
-
Having an issue
do you notice that it stops the internal server for the singleplayer worlds. here are some lines that you should take a look: [11Oct2025 00:02:01.774] [Render thread/INFO][rgp_client/]: Reconnected Rocket client as session has become inactive. [11Oct2025 00:02:01.810] [Server thread/INFO][net.minecraft.server.network.ServerGamePacketListenerImpl/]: ItsOutCast lost connection: Disconnected [11Oct2025 00:02:01.810] [Server thread/INFO][net.minecraft.server.MinecraftServer/]: ItsOutCast left the game [11Oct2025 00:02:01.845] [Server thread/INFO][net.minecraft.server.network.ServerCommonPacketListenerImpl/]: Stopping singleplayer server as player logged out [11Oct2025 00:02:02.085] [Server thread/INFO][net.creeperhost.ftbbackups.FTBBackups/]: Shutdown Complete [11Oct2025 00:02:02.091] [Render thread/INFO][mezz.jei.library.startup.JeiStarter/]: Stopping JEI [11Oct2025 00:02:02.092] [Render thread/INFO][mezz.jei.library.load.PluginCaller/]: Sending Runtime Unavailable... [11Oct2025 00:02:02.092] [Render thread/INFO][mezz.jei.neoforge.plugins.neoforge.NeoForgeGuiPlugin/]: Stopping JEI GUI
-
ItsOutCasts started following Oceanblock 2 + essentials downloaded into crazy bug
- Having an issue
-
Oceanblock 2 + essentials downloaded into crazy bug
Hi, I also am having this issue. Not sure what is causing it
IPS spam blocked by CleanTalk.