Jump to content

Help with crash report org.spongepowered.asm.mixin


volosok_

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I would strongly recommend iFORCE HACKER RECOVERY to any investor or victim of a bitcoin fraud looking for quick and dependable recovery options.     When choosing a Bitcoin recovery professional or a Bitcoin recovery organization, the first thing to look into is their reputation and authenticity. Look into their web presence, client reviews, and testimonials. ( iFORCE HACKER RECOVERY ) is a certified and reliable hacker that comes highly recommended.     Visit Homepage;( iforcehackersrecovery. com   Email is > contact@iforcehackersrecovery. com   On WhatAp;  +1, 240 ( 803, 37 06
    • https://drive.google.com/file/d/19EL0VfXvHr1C7zjB3oV0s-KuDud6tKyD/view?usp=sharing here is the log. cant upload it to pastebin since its too big.  
    • I created a custom effect called "Fullness" that prevents the player from losing hunger when they get the effect. For this, I created a new java class called FullnessEffect. Everything is working fine, and the player isn't able to lose hunger, but I wanted to make it so that whenever you have the Fullness effect, your hunger bar changes color to gold, similar to how your hunger bar turns sickly green when you have the hunger effect. I searched online, but there seems to be no information regarding how to do this. Does anyone know how to do this?  Here is the code for the FullnessEffect class in case anyone needs it (the import section is omitted):  public class FullnessEffect extends MobEffect { public FullnessEffect (MobEffectCategory mobEffectCategory, int color) { super(mobEffectCategory, color); } @Override public boolean applyEffectTick (LivingEntity pLivingEntity, int pAmplifier) { if (!pLivingEntity.getCommandSenderWorld().isClientSide() && pLivingEntity instanceof Player player) { FoodData foodData = player.getFoodData(); float exhaustionLevel = foodData.getExhaustionLevel(); if (exhaustionLevel > 0.0F) { player.causeFoodExhaustion(-exhaustionLevel); } } super.applyEffectTick(pLivingEntity, pAmplifier); return true; } @Override public boolean shouldApplyEffectTickThisTick(int duration, int amplifier) { return true; } } I may sound a bit stupid because I'm a bit new to modding but any help would be greatly appreciated  
    • [20Oct2024 18:25:06.042] [main/ERROR] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/renderer/Sheets for invalid dist DEDICATED_SERVER  1455 lines  3897[20Oct2024 18:25:17.289] [main/ERROR] [net.minecraft.server.Main/FATAL]: Failed to start the minecraft server 3898java.lang.NullPointerException: Cannot invoke "net.minecraftforge.fml.ModList.isLoaded(String)" because the return value of "net.minecraftforge.fml.ModList.get()" is null 3899at net.projectile_damage.forge.PlatformImpl.isModLoaded(PlatformImpl.java:14) ~[projectile_damage-forge-3.2.3+1.20.1.jar%23298!/:?] 3900at net.projectile_damage.Platform.isModLoaded(Platform.java) ~[projectile_damage-forge-3.2.3+1.20.1.jar%23298!/:?] 3901at net.projectile_damage.internal.RegistryHelper.applyDefaultAttributes(RegistryHelper.java:13) ~[projectile_damage-forge-3.2.3+1.20.1.jar%23298!/:?] 3902at net.minecraft.core.registries.BuiltInRegistries.handler$zib000$freezeRegistries_HEAD_ProjectileDamage(BuiltInRegistries.java:556) ~[server-1.20.1-20230612.114412-srg.jar%23327!/:?] 3903at net.minecraft.core.registries.BuiltInRegistries.m_257604_(BuiltInRegistries.java) ~[server-1.20.1-20230612.114412-srg.jar%23327!/:?] 3904at net.minecraft.core.registries.BuiltInRegistries.m_257498_(BuiltInRegistries.java:456) ~[server-1.20.1-20230612.114412-srg.jar%23327!/:?] 3905at net.minecraft.server.Bootstrap.m_135870_(Bootstrap.java:55) ~[server-1.20.1-20230612.114412-srg.jar%23327!/:?] 3906at net.minecraft.server.Main.main(Main.java:121) ~[server-1.20.1-20230612.114412-srg.jar%23327!/:?] 3907at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] 3908at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] 3909at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] 3910at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] 3911at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.11.jar%2369!/:?] 3912at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.3.11.jar%2369!/:?] 3913at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.3.11.jar%2369!/:?] 3914at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!/:?] 3915at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!/:?] 3916at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!/:?] 3917at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!/:?] 3918at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!/:?] 3919at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!/:?] 3920at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!/:?] 3921at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] ----------------------------------------------------------------------------------   these are the errors themselves, there are only two of them, below the fashion  
    • Latest.log of the error in here : https://mclo.gs/X9NeImm. I have a list of various mods that have no compatibility issues and load fine in Single Player / client minecraft. Once i tried to start a server with those same mods, this error occurs. I have checked that none of the mods are client only and i think the error has to do with forge rendering or smth.
  • Topics

×
×
  • Create New...

Important Information

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