Error executing task on server minecraft

Error found on console >.... [21:54:58 INFO]: Viniccius007 issued server command: /wild >.... [21:55:00 FATAL]: Error executing task on Server java.lang.NullPointerException: null at net.mine...
>.... [21:54:58 INFO]: Viniccius007 issued server command: /wild
>.... [21:55:00 FATAL]: Error executing task on Server
java.lang.NullPointerException: null
at net.minecraft.server.v1_14_R1.ChunkMapDistance.b(ChunkMapDistance.java:245) ~[patched_1.14.4.jar:git-Paper-225]
at net.minecraft.server.v1_14_R1.PlayerChunkMap.movePlayer(PlayerChunkMap.java:1298) ~[patched_1.14.4.jar:git-Paper-225]
at net.minecraft.server.v1_14_R1.ChunkProviderServer.movePlayer(ChunkProviderServer.java:739) ~[patched_1.14.4.jar:git-Paper-225]
at net.minecraft.server.v1_14_R1.PlayerConnection.a(PlayerConnection.java:1132) ~[patched_1.14.4.jar:git-Paper-225]
at net.minecraft.server.v1_14_R1.PacketPlayInFlying.a(SourceFile:126) ~[patched_1.14.4.jar:git-Paper-225]
at net.minecraft.server.v1_14_R1.PacketPlayInFlying$PacketPlayInPosition.a(SourceFile:57) ~[patched_1.14.4.jar:git-Paper-225]
at net.minecraft.server.v1_14_R1.PlayerConnectionUtils.lambda$ensureMainThread$0(PlayerConnectionUtils.java:23) ~[patched_1.14.4.jar:git-Paper-225]
at net.minecraft.server.v1_14_R1.TickTask.run(SourceFile:18) ~[patched_1.14.4.jar:git-Paper-225]
at net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136) ~[patched_1.14.4.jar:git-Paper-225]
at net.minecraft.server.v1_14_R1.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23) ~[patched_1.14.4.jar:git-Paper-225]
at net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109) ~[patched_1.14.4.jar:git-Paper-225]
at net.minecraft.server.v1_14_R1.MinecraftServer.aX(MinecraftServer.java:1029) ~[patched_1.14.4.jar:git-Paper-225]
at net.minecraft.server.v1_14_R1.MinecraftServer.executeNext(MinecraftServer.java:1022) ~[patched_1.14.4.jar:git-Paper-225]
at net.minecraft.server.v1_14_R1.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119) ~[patched_1.14.4.jar:git-Paper-225]
at net.minecraft.server.v1_14_R1.MinecraftServer.a(MinecraftServer.java:1088) ~[patched_1.14.4.jar:git-Paper-225]
at net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:925) ~[patched_1.14.4.jar:git-Paper-225]
at java.lang.Thread.run(Thread.java:748) [?:1.8.0_212]
>.... [21:55:00 INFO]: Viniccius007 issued server command: /wild $hut Up And Take My M0ney!

WildTP Version: Wild version 2.13-8ecba61
Server Version: This server is running Paper version git-Paper-225 (MC: 1.14.4)

  1. Народ, почему-то вылезает это исключение, хотя весь функционал плагина работает.

    Помогите:

    package ru.lisenochek.drugs;
    
    import org.bukkit.Material;
    import org.bukkit.entity.Player;
    import org.bukkit.event.EventHandler;
    import org.bukkit.event.Listener;
    import org.bukkit.event.block.Action;
    import org.bukkit.event.player.PlayerInteractEvent;
    import org.*********ventory.ItemStack;
    import org.bukkit.potion.PotionEffect;
    import org.bukkit.potion.PotionEffectType;
    
    import java.util.Random;
    
    public class UseDrugsListener implements Listener {
    
        @EventHandler
        public void useDrugs(PlayerInteractEvent e) {
    
            Player p = e.getPlayer();
    
            if (e.getAction() != Action.RIGHT_CLICK_AIR && e.getAction() != Action.RIGHT_CLICK_BLOCK) return;
            if (!p.getItemInHand().hasItemMeta()) return;
            if (p.getItemInHand().getItemMeta().getDisplayName() == null) return;
    
            if (p.getItemInHand().getItemMeta().getDisplayName().equalsIgnoreCase(DrugList.cocaine.getItemMeta().getDisplayName())) {
                getDrugEffect(p);
            }
    
            if (p.getItemInHand().getItemMeta().getDisplayName().equalsIgnoreCase(DrugList.marihuana.getItemMeta().getDisplayName())) {
                getDrugEffect(p);
            }
        }
    
        public void getDrugEffect(Player p) {
    
            Random r = new Random();
    
            if (p.getItemInHand().getAmount() == 1) {
                p.getInventory().setItem(p.getInventory().getHeldItemSlot(), new ItemStack(Material.AIR));
            } else {
                p.getItemInHand().setAmount(p.getItemInHand().getAmount() - 1);
            }
    
            if (r.nextBoolean()) {
                p.addPotionEffect(new PotionEffect(PotionEffectType.SPEED, 150, 1));
                p.addPotionEffect(new PotionEffect(PotionEffectType.JUMP, 150, 1));
                p.addPotionEffect(new PotionEffect(PotionEffectType.CONFUSION, 150, 1));
    
                p.sendMessage(C.getPrefix() + C.c("&aЧувак, ты такой смешной.... *безудержанный смех*."));
            } else {
                p.addPotionEffect(new PotionEffect(PotionEffectType.SLOW, 150, 1));
                p.addPotionEffect(new PotionEffect(PotionEffectType.HUNGER, 150, 1));
                p.addPotionEffect(new PotionEffect(PotionEffectType.NIGHT_VISION, 150, 1));
    
                p.sendMessage(C.getPrefix() + C.c("&aОоо... Чего-то мне нехорошо..."));
            }
        }
    }
    

    Исключение:

    [17:33:11 FATAL]: Error executing task
    java.util.concurrent.ExecutionException: java.lang.AssertionError: TRAP
            at java.util.concurrent.FutureTask.report(Unknown Source) ~[?:1.8.0_111]
            at java.util.concurrent.FutureTask.get(Unknown Source) ~[?:1.8.0_111]
            at net.minecraft.server.v1_11_R1.SystemUtils.a(SourceFile:47) [server.jar:git-Spigot-7d78b81-7e19325]
            at net.minecraft.server.v1_11_R1.MinecraftServer.D(MinecraftServer.java:739) [server.jar:git-Spigot-7d78b81-7e19325]
            at net.minecraft.server.v1_11_R1.DedicatedServer.D(DedicatedServer.java:399) [server.jar:git-Spigot-7d78b81-7e19325]
            at net.minecraft.server.v1_11_R1.MinecraftServer.C(MinecraftServer.java:675) [server.jar:git-Spigot-7d78b81-7e19325]
            at net.minecraft.server.v1_11_R1.MinecraftServer.run(MinecraftServer.java:574) [server.jar:git-Spigot-7d78b81-7e19325]
            at java.lang.Thread.run(Unknown Source) [?:1.8.0_111]
    Caused by: java.lang.AssertionError: TRAP
            at net.minecraft.server.v1_11_R1.ItemStack.F(ItemStack.java:94) ~[server.jar:git-Spigot-7d78b81-7e19325]
            at net.minecraft.server.v1_11_R1.ItemStack.setCount(ItemStack.java:822) ~[server.jar:git-Spigot-7d78b81-7e19325]
            at net.minecraft.server.v1_11_R1.PlayerInteractManager.a(PlayerInteractManager.java:403) ~[server.jar:git-Spigot-7d78b81-7e19325]
            at net.minecraft.server.v1_11_R1.PlayerConnection.a(PlayerConnection.java:957) ~[server.jar:git-Spigot-7d78b81-7e19325]
            at net.minecraft.server.v1_11_R1.PacketPlayInBlockPlace.a(PacketPlayInBlockPlace.java:26) ~[server.jar:git-Spigot-7d78b81-7e19325]
            at net.minecraft.server.v1_11_R1.PacketPlayInBlockPlace.a(PacketPlayInBlockPlace.java:1) ~[server.jar:git-Spigot-7d78b81-7e19325]
            at net.minecraft.server.v1_11_R1.PlayerConnectionUtils$1.run(SourceFile:13) ~[server.jar:git-Spigot-7d78b81-7e19325]
            at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) ~[?:1.8.0_111]
            at java.util.concurrent.FutureTask.run(Unknown Source) ~[?:1.8.0_111]
            at net.minecraft.server.v1_11_R1.SystemUtils.a(SourceFile:46) ~[server.jar:git-Spigot-7d78b81-7e19325]
            ... 5 more
  2. Быстрая раскрутка сервера Minecraft


  3. Larin

    Larin
    Старожил
    Пользователь

  4. Зачем мне отменять ивент?


  5. XjCyan1de

    XjCyan1de
    Активный участник
    Пользователь

    Баллы:
    76
    Имя в Minecraft:
    XjCyan1de

    Должно быть if (тото тото) { действие } else { e.setCanceled = true }

  6. Ору, спасибо.
    Проблема вернулась. Иногда по непонятным причинам исключение вылезает вновь!


  7. Larin

    Larin
    Старожил
    Пользователь

    Эвент отменяй! Сколько раз тебе говорить?

    if (p.getItemInHand().getItemMeta().getDisplayName().equalsIgnoreCase(DrugList.cocaine.getItemMeta().getDisplayName())) {
        getDrugEffect(p);
        e.setCancelled(true)
    }
    
    if (p.getItemInHand().getItemMeta().getDisplayName().equalsIgnoreCase(DrugList.marihuana.getItemMeta().getDisplayName())) {
        getDrugEffect(p);
        e.setCancelled(true)
    }
    

    Что-то вроде этого.

  8. Лол, я же отменял не в проверках, а после них


  9. Larin

    Larin
    Старожил
    Пользователь

    Я не знаю, что и как ты там отменял, напиши как я сказал, должно перестать ошибку выдавать.

Поделиться этой страницей

Русское сообщество Bukkit

Bukkit по-русски - свой сервер Minecraft

By

Zuzuthekuzu · Posted 3 hours ago

error code 4294967295

 

—- Minecraft Crash Report —-
// Why did you do that?

Time: 2/9/23, 12:52 PM
Description: Container click

java.lang.NullPointerException: Registry Object not present: aquaculture:wooden_fillet_knife
    at java.util.Objects.requireNonNull(Unknown Source) ~[?:?] {re:mixin}
    at net.minecraftforge.registries.RegistryObject.get(RegistryObject.java:320) ~[forge-1.18.2-40.2.1-universal.jar%23174!/:?] {re:mixin,xf:fml:forge:registry_object_binary_compat,re:classloading,xf:fml:forge:registry_object_binary_compat}
    at com.teammetallurgy.aquaculture.misc.FurnaceFuel.fuel(FurnaceFuel.java:16) ~[Aquaculture-1.18.2-2.3.10.jar%2359!/:1.18.2-2.3.10] {re:classloading}
    at net.minecraftforge.eventbus.ASMEventHandler_758_FurnaceFuel_fuel_FurnaceFuelBurnTimeEvent.invoke(.dynamic) ~[?:?] {}
    at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.event.ForgeEventFactory.getItemBurnTime(ForgeEventFactory.java:230) ~[forge-1.18.2-40.2.1-universal.jar%23174!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.common.ForgeHooks.getBurnTime(ForgeHooks.java:1259) ~[forge-1.18.2-40.2.1-universal.jar%23174!/:?] {re:classloading}
    at net.minecraft.world.inventory.AbstractFurnaceMenu.m_38988_(AbstractFurnaceMenu.java:150) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading}
    at net.minecraft.world.inventory.AbstractFurnaceMenu.m_7648_(AbstractFurnaceMenu.java:114) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading}
    at net.minecraft.world.inventory.AbstractContainerMenu.m_150430_(AbstractContainerMenu.java:395) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:placebo.mixins.json:AbstractContainerMenuInvoker,pl:mixin:A}
    at net.minecraft.world.inventory.AbstractContainerMenu.m_150399_(AbstractContainerMenu.java:295) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:placebo.mixins.json:AbstractContainerMenuInvoker,pl:mixin:A}
    at net.minecraft.client.multiplayer.MultiPlayerGameMode.m_171799_(MultiPlayerGameMode.java:392) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
    at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_6597_(AbstractContainerScreen.java:550) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:AbstractContainerScreenAccessor,pl:mixin:APP:botania_xplat.mixins.json:client.AccessorAbstractContainerScreen,pl:mixin:APP:mousetweaks.mixins.json:AbstractContainerScreenAccessor,pl:mixin:APP:quark.mixins.json:client.ContainerScreenMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.gui.screens.inventory.AbstractFurnaceScreen.m_6597_(AbstractFurnaceScreen.java:105) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading}
    at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_6375_(AbstractContainerScreen.java:347) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:AbstractContainerScreenAccessor,pl:mixin:APP:botania_xplat.mixins.json:client.AccessorAbstractContainerScreen,pl:mixin:APP:mousetweaks.mixins.json:AbstractContainerScreenAccessor,pl:mixin:APP:quark.mixins.json:client.ContainerScreenMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.gui.screens.inventory.AbstractFurnaceScreen.m_6375_(AbstractFurnaceScreen.java:100) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading}
    at net.minecraft.client.MouseHandler.m_168084_(MouseHandler.java:88) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MouseHandlerAccessor,pl:mixin:APP:supplementaries.mixins.json:MouseHandlerMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMouseHandler,pl:mixin:APP:rubidium_extras.mixins.json:Zoom.MouseMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.gui.screens.Screen.m_96579_(Screen.java:528) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:controlling.mixins.json:AccessScreen,pl:mixin:APP:balm.mixins.json:ScreenAccessor,pl:mixin:APP:konkrete.mixin.json:client.MixinScreen,pl:mixin:APP:patchouli_xplat.mixins.json:client.AccessorScreen,pl:mixin:APP:iceberg.mixins.json:ScreenMixin,pl:mixin:APP:quark.mixins.json:client.ScreenMixin,pl:mixin:APP:byg.mixins.json:access.client.ScreenAccess,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.MouseHandler.m_91530_(MouseHandler.java:85) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MouseHandlerAccessor,pl:mixin:APP:supplementaries.mixins.json:MouseHandlerMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMouseHandler,pl:mixin:APP:rubidium_extras.mixins.json:Zoom.MouseMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.MouseHandler.m_168091_(MouseHandler.java:185) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MouseHandlerAccessor,pl:mixin:APP:supplementaries.mixins.json:MouseHandlerMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMouseHandler,pl:mixin:APP:rubidium_extras.mixins.json:Zoom.MouseMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}
    at net.minecraft.client.MouseHandler.m_91565_(MouseHandler.java:184) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MouseHandlerAccessor,pl:mixin:APP:supplementaries.mixins.json:MouseHandlerMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMouseHandler,pl:mixin:APP:rubidium_extras.mixins.json:Zoom.MouseMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar%2348!/:build 10] {}
    at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar%2344!/:build 10] {}
    at org.lwjgl.glfw.GLFW.glfwPollEvents(GLFW.java:3101) ~[lwjgl-glfw-3.2.2.jar%2348!/:build 10] {re:mixin}
    at com.mojang.blaze3d.systems.RenderSystem.m_69495_(RenderSystem.java:197) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:flywheel.mixins.json:RenderTexturesMixin,pl:mixin:A}
    at com.mojang.blaze3d.platform.Window.m_85435_(Window.java:333) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:rubidium_extras.mixins.json:BorderlessFullscreen.MainWindowAccessor,pl:mixin:APP:rubidium_extras.mixins.json:BorderlessFullscreen.WindowMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1068) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMinecraft,pl:mixin:APP:botania_xplat.mixins.json:client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:APP:byg_forge.mixins.json:client.MixinMinecraft,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:665) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMinecraft,pl:mixin:APP:botania_xplat.mixins.json:client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:APP:byg_forge.mixins.json:client.MixinMinecraft,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,pl:mixin:A,pl:runtimedistcleaner:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.2.1.jar%2317!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {}

A detailed walkthrough of the error, its code path and all known details is as follows:
—————————————————————————————

— Head —
Thread: Render thread
Stacktrace:
    at java.util.Objects.requireNonNull(Unknown Source) ~[?:?] {re:mixin}
    at net.minecraftforge.registries.RegistryObject.get(RegistryObject.java:320) ~[forge-1.18.2-40.2.1-universal.jar%23174!/:?] {re:mixin,xf:fml:forge:registry_object_binary_compat,re:classloading,xf:fml:forge:registry_object_binary_compat}
    at com.teammetallurgy.aquaculture.misc.FurnaceFuel.fuel(FurnaceFuel.java:16) ~[Aquaculture-1.18.2-2.3.10.jar%2359!/:1.18.2-2.3.10] {re:classloading}
    at net.minecraftforge.eventbus.ASMEventHandler_758_FurnaceFuel_fuel_FurnaceFuelBurnTimeEvent.invoke(.dynamic) ~[?:?] {}
    at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.event.ForgeEventFactory.getItemBurnTime(ForgeEventFactory.java:230) ~[forge-1.18.2-40.2.1-universal.jar%23174!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.common.ForgeHooks.getBurnTime(ForgeHooks.java:1259) ~[forge-1.18.2-40.2.1-universal.jar%23174!/:?] {re:classloading}
    at net.minecraft.world.inventory.AbstractFurnaceMenu.m_38988_(AbstractFurnaceMenu.java:150) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading}
    at net.minecraft.world.inventory.AbstractFurnaceMenu.m_7648_(AbstractFurnaceMenu.java:114) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading}
    at net.minecraft.world.inventory.AbstractContainerMenu.m_150430_(AbstractContainerMenu.java:395) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:placebo.mixins.json:AbstractContainerMenuInvoker,pl:mixin:A}
    at net.minecraft.world.inventory.AbstractContainerMenu.m_150399_(AbstractContainerMenu.java:295) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:placebo.mixins.json:AbstractContainerMenuInvoker,pl:mixin:A}
    at net.minecraft.client.multiplayer.MultiPlayerGameMode.m_171799_(MultiPlayerGameMode.java:392) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
    at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_6597_(AbstractContainerScreen.java:550) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:AbstractContainerScreenAccessor,pl:mixin:APP:botania_xplat.mixins.json:client.AccessorAbstractContainerScreen,pl:mixin:APP:mousetweaks.mixins.json:AbstractContainerScreenAccessor,pl:mixin:APP:quark.mixins.json:client.ContainerScreenMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.gui.screens.inventory.AbstractFurnaceScreen.m_6597_(AbstractFurnaceScreen.java:105) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading}
    at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_6375_(AbstractContainerScreen.java:347) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:AbstractContainerScreenAccessor,pl:mixin:APP:botania_xplat.mixins.json:client.AccessorAbstractContainerScreen,pl:mixin:APP:mousetweaks.mixins.json:AbstractContainerScreenAccessor,pl:mixin:APP:quark.mixins.json:client.ContainerScreenMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.gui.screens.inventory.AbstractFurnaceScreen.m_6375_(AbstractFurnaceScreen.java:100) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading}
    at net.minecraft.client.MouseHandler.m_168084_(MouseHandler.java:88) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MouseHandlerAccessor,pl:mixin:APP:supplementaries.mixins.json:MouseHandlerMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMouseHandler,pl:mixin:APP:rubidium_extras.mixins.json:Zoom.MouseMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.gui.screens.Screen.m_96579_(Screen.java:528) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:controlling.mixins.json:AccessScreen,pl:mixin:APP:balm.mixins.json:ScreenAccessor,pl:mixin:APP:konkrete.mixin.json:client.MixinScreen,pl:mixin:APP:patchouli_xplat.mixins.json:client.AccessorScreen,pl:mixin:APP:iceberg.mixins.json:ScreenMixin,pl:mixin:APP:quark.mixins.json:client.ScreenMixin,pl:mixin:APP:byg.mixins.json:access.client.ScreenAccess,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.MouseHandler.m_91530_(MouseHandler.java:85) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MouseHandlerAccessor,pl:mixin:APP:supplementaries.mixins.json:MouseHandlerMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMouseHandler,pl:mixin:APP:rubidium_extras.mixins.json:Zoom.MouseMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.MouseHandler.m_168091_(MouseHandler.java:185) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MouseHandlerAccessor,pl:mixin:APP:supplementaries.mixins.json:MouseHandlerMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMouseHandler,pl:mixin:APP:rubidium_extras.mixins.json:Zoom.MouseMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}
    at net.minecraft.client.MouseHandler.m_91565_(MouseHandler.java:184) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MouseHandlerAccessor,pl:mixin:APP:supplementaries.mixins.json:MouseHandlerMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMouseHandler,pl:mixin:APP:rubidium_extras.mixins.json:Zoom.MouseMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar%2348!/:build 10] {}
    at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar%2344!/:build 10] {}
    at org.lwjgl.glfw.GLFW.glfwPollEvents(GLFW.java:3101) ~[lwjgl-glfw-3.2.2.jar%2348!/:build 10] {re:mixin}
    at com.mojang.blaze3d.systems.RenderSystem.m_69495_(RenderSystem.java:197) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:flywheel.mixins.json:RenderTexturesMixin,pl:mixin:A}
— Click info —
Details:
    Menu Type: minecraft:furnace
    Menu Class: net.minecraft.world.inventory.FurnaceMenu
    Slot Count: 39
    Slot: 36
    Button: 0
    Type: QUICK_MOVE
Stacktrace:
    at net.minecraft.world.inventory.AbstractContainerMenu.m_150399_(AbstractContainerMenu.java:295) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:placebo.mixins.json:AbstractContainerMenuInvoker,pl:mixin:A}
    at net.minecraft.client.multiplayer.MultiPlayerGameMode.m_171799_(MultiPlayerGameMode.java:392) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
    at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_6597_(AbstractContainerScreen.java:550) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:AbstractContainerScreenAccessor,pl:mixin:APP:botania_xplat.mixins.json:client.AccessorAbstractContainerScreen,pl:mixin:APP:mousetweaks.mixins.json:AbstractContainerScreenAccessor,pl:mixin:APP:quark.mixins.json:client.ContainerScreenMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.gui.screens.inventory.AbstractFurnaceScreen.m_6597_(AbstractFurnaceScreen.java:105) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading}
    at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_6375_(AbstractContainerScreen.java:347) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:AbstractContainerScreenAccessor,pl:mixin:APP:botania_xplat.mixins.json:client.AccessorAbstractContainerScreen,pl:mixin:APP:mousetweaks.mixins.json:AbstractContainerScreenAccessor,pl:mixin:APP:quark.mixins.json:client.ContainerScreenMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.gui.screens.inventory.AbstractFurnaceScreen.m_6375_(AbstractFurnaceScreen.java:100) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading}
    at net.minecraft.client.MouseHandler.m_168084_(MouseHandler.java:88) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MouseHandlerAccessor,pl:mixin:APP:supplementaries.mixins.json:MouseHandlerMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMouseHandler,pl:mixin:APP:rubidium_extras.mixins.json:Zoom.MouseMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.gui.screens.Screen.m_96579_(Screen.java:528) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:controlling.mixins.json:AccessScreen,pl:mixin:APP:balm.mixins.json:ScreenAccessor,pl:mixin:APP:konkrete.mixin.json:client.MixinScreen,pl:mixin:APP:patchouli_xplat.mixins.json:client.AccessorScreen,pl:mixin:APP:iceberg.mixins.json:ScreenMixin,pl:mixin:APP:quark.mixins.json:client.ScreenMixin,pl:mixin:APP:byg.mixins.json:access.client.ScreenAccess,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.MouseHandler.m_91530_(MouseHandler.java:85) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MouseHandlerAccessor,pl:mixin:APP:supplementaries.mixins.json:MouseHandlerMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMouseHandler,pl:mixin:APP:rubidium_extras.mixins.json:Zoom.MouseMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.MouseHandler.m_168091_(MouseHandler.java:185) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MouseHandlerAccessor,pl:mixin:APP:supplementaries.mixins.json:MouseHandlerMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMouseHandler,pl:mixin:APP:rubidium_extras.mixins.json:Zoom.MouseMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}
    at net.minecraft.client.MouseHandler.m_91565_(MouseHandler.java:184) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MouseHandlerAccessor,pl:mixin:APP:supplementaries.mixins.json:MouseHandlerMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMouseHandler,pl:mixin:APP:rubidium_extras.mixins.json:Zoom.MouseMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar%2348!/:build 10] {}
    at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar%2344!/:build 10] {}
    at org.lwjgl.glfw.GLFW.glfwPollEvents(GLFW.java:3101) ~[lwjgl-glfw-3.2.2.jar%2348!/:build 10] {re:mixin}
    at com.mojang.blaze3d.systems.RenderSystem.m_69495_(RenderSystem.java:197) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:flywheel.mixins.json:RenderTexturesMixin,pl:mixin:A}
    at com.mojang.blaze3d.platform.Window.m_85435_(Window.java:333) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:rubidium_extras.mixins.json:BorderlessFullscreen.MainWindowAccessor,pl:mixin:APP:rubidium_extras.mixins.json:BorderlessFullscreen.WindowMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1068) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMinecraft,pl:mixin:APP:botania_xplat.mixins.json:client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:APP:byg_forge.mixins.json:client.MixinMinecraft,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:665) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMinecraft,pl:mixin:APP:botania_xplat.mixins.json:client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:APP:byg_forge.mixins.json:client.MixinMinecraft,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,pl:mixin:A,pl:runtimedistcleaner:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.2.1.jar%2317!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {}

— Affected screen —
Details:
    Screen name: net.minecraft.client.gui.screens.inventory.FurnaceScreen
Stacktrace:
    at net.minecraft.client.gui.screens.Screen.m_96579_(Screen.java:528) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:controlling.mixins.json:AccessScreen,pl:mixin:APP:balm.mixins.json:ScreenAccessor,pl:mixin:APP:konkrete.mixin.json:client.MixinScreen,pl:mixin:APP:patchouli_xplat.mixins.json:client.AccessorScreen,pl:mixin:APP:iceberg.mixins.json:ScreenMixin,pl:mixin:APP:quark.mixins.json:client.ScreenMixin,pl:mixin:APP:byg.mixins.json:access.client.ScreenAccess,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.MouseHandler.m_91530_(MouseHandler.java:85) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MouseHandlerAccessor,pl:mixin:APP:supplementaries.mixins.json:MouseHandlerMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMouseHandler,pl:mixin:APP:rubidium_extras.mixins.json:Zoom.MouseMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.MouseHandler.m_168091_(MouseHandler.java:185) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MouseHandlerAccessor,pl:mixin:APP:supplementaries.mixins.json:MouseHandlerMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMouseHandler,pl:mixin:APP:rubidium_extras.mixins.json:Zoom.MouseMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}
    at net.minecraft.client.MouseHandler.m_91565_(MouseHandler.java:184) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MouseHandlerAccessor,pl:mixin:APP:supplementaries.mixins.json:MouseHandlerMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMouseHandler,pl:mixin:APP:rubidium_extras.mixins.json:Zoom.MouseMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar%2348!/:build 10] {}
    at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar%2344!/:build 10] {}
    at org.lwjgl.glfw.GLFW.glfwPollEvents(GLFW.java:3101) ~[lwjgl-glfw-3.2.2.jar%2348!/:build 10] {re:mixin}
    at com.mojang.blaze3d.systems.RenderSystem.m_69495_(RenderSystem.java:197) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:flywheel.mixins.json:RenderTexturesMixin,pl:mixin:A}
    at com.mojang.blaze3d.platform.Window.m_85435_(Window.java:333) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:rubidium_extras.mixins.json:BorderlessFullscreen.MainWindowAccessor,pl:mixin:APP:rubidium_extras.mixins.json:BorderlessFullscreen.WindowMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1068) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMinecraft,pl:mixin:APP:botania_xplat.mixins.json:client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:APP:byg_forge.mixins.json:client.MixinMinecraft,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:665) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMinecraft,pl:mixin:APP:botania_xplat.mixins.json:client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:APP:byg_forge.mixins.json:client.MixinMinecraft,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,pl:mixin:A,pl:runtimedistcleaner:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.2.1.jar%2317!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {}

— Affected level —
Details:
    All players: 1 total; [LocalPlayer[‘LeKutay’/3073, l=’ClientLevel’, x=-904.73, y=65.00, z=2225.41]]
    Chunk stats: 1024, 157
    Level dimension: minecraft:overworld
    Level spawn location: World: (0,68,0), Section: (at 0,4,0 in 0,4,0; chunk contains blocks 0,-64,0 to 15,319,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511)
    Level time: 264985 game time, 302468 day time
    Server brand: forge
    Server type: Non-integrated multiplayer server
Stacktrace:
    at net.minecraft.client.multiplayer.ClientLevel.m_6026_(ClientLevel.java:407) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:dynamiclightsreforged.mixins.json:ClientWorldMixin,pl:mixin:APP:rubidium.mixins.json:features.chunk_rendering.MixinClientWorld,pl:mixin:APP:rubidium.mixins.json:features.fast_biome_colors.MixinClientWorld,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:byg.mixins.json:access.client.ClientLevelAccess,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91354_(Minecraft.java:2264) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMinecraft,pl:mixin:APP:botania_xplat.mixins.json:client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:APP:byg_forge.mixins.json:client.MixinMinecraft,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:682) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:konkrete.mixin.json:client.MixinMinecraft,pl:mixin:APP:botania_xplat.mixins.json:client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:APP:byg_forge.mixins.json:client.MixinMinecraft,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%23169!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,pl:mixin:A,pl:runtimedistcleaner:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.2.1.jar%2317!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {}

— Last reload —
Details:
    Reload number: 1
    Reload reason: initial
    Finished: Yes
    Packs: Default, Mod Resources, Supplementaries Generated Pack, quark-emote-pack

— System Details —
Details:
    Minecraft Version: 1.18.2
    Minecraft Version ID: 1.18.2
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 17.0.1, Eclipse Adoptium
    Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Eclipse Adoptium
    Memory: 939714032 bytes (896 MiB) / 3923771392 bytes (3742 MiB) up to 4294967296 bytes (4096 MiB)
    CPUs: 16
    Processor Vendor: AuthenticAMD
    Processor Name: AMD Ryzen 7 6800H with Radeon Graphics         
    Identifier: AuthenticAMD Family 25 Model 68 Stepping 1
    Microarchitecture: Zen 3
    Frequency (GHz): 3.19
    Number of physical packages: 1
    Number of physical CPUs: 8
    Number of logical CPUs: 16
    Graphics card #0 name: AMD Radeon(TM) Graphics
    Graphics card #0 vendor: Advanced Micro Devices, Inc. (0x1002)
    Graphics card #0 VRAM (MB): 512.00
    Graphics card #0 deviceId: 0x1681
    Graphics card #0 versionInfo: DriverVersion=31.0.12024.2005
    Graphics card #1 name: NVIDIA GeForce RTX 3050 Ti Laptop GPU
    Graphics card #1 vendor: NVIDIA (0x10de)
    Graphics card #1 VRAM (MB): 4095.00
    Graphics card #1 deviceId: 0x25a0
    Graphics card #1 versionInfo: DriverVersion=31.0.15.2698
    Memory slot #0 capacity (MB): 16384.00
    Memory slot #0 clockSpeed (GHz): 4.80
    Memory slot #0 type: Unknown
    Virtual memory max (MB): 33021.15
    Virtual memory used (MB): 23014.09
    Swap memory total (MB): 17408.00
    Swap memory used (MB): 1438.68
    JVM Flags: 5 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx4096m -Xms4096m -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xms256m
    Launched Version: 1.18.2
    Backend library: LWJGL version 3.2.2 SNAPSHOT
    Backend API: NVIDIA GeForce RTX 3050 Ti Laptop GPU/PCIe/SSE2 GL version 3.2.0 NVIDIA 526.98, NVIDIA Corporation
    Window size: 854×480
    GL Caps: Using framebuffer using OpenGL 3.2
    GL debug messages: 
    Using VBOs: Yes
    Is Modded: Definitely; Client brand changed to ‘forge’
    Type: Client (map_client.txt)
    Graphics mode: fancy
    Resource Packs: 
    Current Language: English (US)
    CPU: 16x AMD Ryzen 7 6800H with Radeon Graphics 
    ModLauncher: 9.1.3+9.1.3+main.9b69c82a
    ModLauncher launch target: forgeclient
    ModLauncher naming: srg
    ModLauncher services: 
         mixin PLUGINSERVICE 
         eventbus PLUGINSERVICE 
         slf4jfixer PLUGINSERVICE 
         object_holder_definalize PLUGINSERVICE 
         runtime_enum_extender PLUGINSERVICE 
         capability_token_subclass PLUGINSERVICE 
         accesstransformer PLUGINSERVICE 
         runtimedistcleaner PLUGINSERVICE 
         mixin TRANSFORMATIONSERVICE 
         fml TRANSFORMATIONSERVICE 
    FML Language Providers: 
        minecraft@1.0
        lowcodefml@null
        javafml@null
    Mod List: 
        dynamiclightsreforged-1.18.2_v1.3.3.jar           |Rubidium Dynamic Lights       |dynamiclightsreforged         |1.18.2_v1.3.3       |DONE      |Manifest: NOSIGNATURE
        YungsBetterDungeons-1.18.2-Forge-2.1.0.jar        |YUNG’s Better Dungeons        |betterdungeons                |1.18.2-Forge-2.1.0  |DONE      |Manifest: NOSIGNATURE
        YungsBetterOceanMonuments-1.18.2-Forge-1.0.3.jar  |YUNG’s Better Ocean Monuments |betteroceanmonuments          |1.18.2-Forge-1.0.3  |DONE      |Manifest: NOSIGNATURE
        sophisticatedcore-1.18.2-0.5.37.202.jar           |Sophisticated Core            |sophisticatedcore             |1.18.2-0.5.37.202   |DONE      |Manifest: NOSIGNATURE
        rubidium-0.5.4.jar                                |Rubidium                      |rubidium                      |0.5.4               |DONE      |Manifest: NOSIGNATURE
        rsgauges-1.18.2-1.2.16.jar                        |Gauges and Switches           |rsgauges                      |1.2.16              |DONE      |Manifest: bf:30:76:97:e4:58:41:61:2a:f4:30:d3:8f:4c:e3:71:1d:14:c4:a1:4e:85:36:e3:1d:aa:2f:cb:22:b0:04:9b
        Controlling-forge-1.18.2-9.0+22.jar               |Controlling                   |controlling                   |9.0+22              |DONE      |Manifest: NOSIGNATURE
        Placebo-1.18.2-6.6.6.jar                          |Placebo                       |placebo                       |6.6.6               |DONE      |Manifest: NOSIGNATURE
        citadel-1.11.3-1.18.2.jar                         |Citadel                       |citadel                       |1.11.3              |DONE      |Manifest: NOSIGNATURE
        alexsmobs-1.18.6.jar                              |Alex’s Mobs                   |alexsmobs                     |1.18.6              |DONE      |Manifest: NOSIGNATURE
        YungsApi-1.18.2-Forge-2.2.7.jar                   |YUNG’s API                    |yungsapi                      |1.18.2-Forge-2.2.7  |DONE      |Manifest: NOSIGNATURE
        Powah-3.0.7.jar                                   |Powah                         |powah                         |3.0.7               |DONE      |Manifest: NOSIGNATURE
        feature_nbt_deadlock_be_gone_forge-2.0.0+1.18.2.ja|Feature NBT Deadlock Be Gone  |feature_nbt_deadlock_be_gone  |2.0.0+1.18.2        |DONE      |Manifest: NOSIGNATURE
        upgradednetherite_items-1.18.2-3.2.0.0-release.jar|Upgraded Netherite : Items    |upgradednetherite_items       |1.18.2-3.2.0.0-relea|DONE      |Manifest: NOSIGNATURE
        Bookshelf-Forge-1.18.2-13.2.52.jar                |Bookshelf                     |bookshelf                     |13.2.52             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5
        sophisticatedbackpacks-1.18.2-3.18.40.777.jar     |Sophisticated Backpacks       |sophisticatedbackpacks        |1.18.2-3.18.40.777  |DONE      |Manifest: NOSIGNATURE
        guardvillagers-1.18.2.1.4.3.jar                   |Guard Villagers               |guardvillagers                |1.4.3               |DONE      |Manifest: NOSIGNATURE
        secretrooms-1.18.2-1.1.5.jar                      |Secret Rooms 6                |secretroomsmod                |1.18.2-1.1.5        |DONE      |Manifest: NOSIGNATURE
        Apotheosis-1.18.2-5.7.7.jar                       |Apotheosis                    |apotheosis                    |5.7.7               |DONE      |Manifest: NOSIGNATURE
        balm-3.2.2+0.jar                                  |Balm                          |balm                          |3.2.2+0             |DONE      |Manifest: NOSIGNATURE
        carryon-1.18.2-1.17.0.8.jar                       |Carry On                      |carryon                       |1.17.0.8            |DONE      |Manifest: NOSIGNATURE
        JustEnoughResources-1.18.2-0.14.1.171.jar         |Just Enough Resources         |jeresources                   |0.14.1.171          |DONE      |Manifest: NOSIGNATURE
        cloth-config-6.4.90-forge.jar                     |Cloth Config v4 API           |cloth_config                  |6.4.90              |DONE      |Manifest: NOSIGNATURE
        twilightforest-1.18.2-4.1.1494-universal.jar      |The Twilight Forest           |twilightforest                |4.1.1494            |DONE      |Manifest: NOSIGNATURE
        refinedstorage-1.10.4.jar                         |Refined Storage               |refinedstorage                |1.10.4              |DONE      |Manifest: NOSIGNATURE
        konkrete_forge_1.6.0_MC_1.18-1.18.2.jar           |Konkrete                      |konkrete                      |1.6.0               |DONE      |Manifest: NOSIGNATURE
        upgradednetherite-1.18.2-4.2.0.6-release.jar      |Upgraded Netherite            |upgradednetherite             |1.18.2-4.2.0.6-relea|DONE      |Manifest: NOSIGNATURE
        AdvancementPlaques-1.18.2-1.4.5.1.jar             |Advancement Plaques           |advancementplaques            |1.4.5.1             |DONE      |Manifest: NOSIGNATURE
        FarmersDelight-1.18.2-1.2.0.jar                   |Farmer’s Delight              |farmersdelight                |1.18.2-1.2.0        |DONE      |Manifest: NOSIGNATURE
        ends_delight-1.18.2-1.0.jar                       |End’s Delight                 |ends_delight                  |1.18.2-1.0          |DONE      |Manifest: NOSIGNATURE
        torchmaster-18.1.0.jar                            |Torchmaster                   |torchmaster                   |18.1.0              |DONE      |Manifest: NOSIGNATURE
        BiomesOPlenty-1.18.2-16.0.0.109-universal.jar     |Biomes O’ Plenty              |biomesoplenty                 |1.18.2-16.0.0.109   |DONE      |Manifest: NOSIGNATURE
        ironfurnaces-1.18.2-3.3.3.jar                     |Iron Furnaces                 |ironfurnaces                  |3.3.3               |DONE      |Manifest: NOSIGNATURE
        supermartijn642corelib-1.1.1a-forge-mc1.18.jar    |SuperMartijn642’s Core Lib    |supermartijn642corelib        |1.1.1a              |DONE      |Manifest: NOSIGNATURE
        Botania-1.18.2-435.jar                            |Botania                       |botania                       |1.18.2-435          |DONE      |Manifest: NOSIGNATURE
        curios-forge-1.18.2-5.0.7.1.jar                   |Curios API                    |curios                        |1.18.2-5.0.7.1      |DONE      |Manifest: NOSIGNATURE
        Patchouli-1.18.2-71.1.jar                         |Patchouli                     |patchouli                     |1.18.2-71.1         |DONE      |Manifest: NOSIGNATURE
        blockui-1.18.2-0.0.55-ALPHA.jar                   |UI Library Mod                |blockui                       |1.18.2-0.0.55-ALPHA |DONE      |Manifest: NOSIGNATURE
        ftb-ultimine-forge-1802.3.3-build.70.jar          |FTB Ultimine                  |ftbultimine                   |1802.3.3-build.70   |DONE      |Manifest: NOSIGNATURE
        YungsBetterStrongholds-1.18.2-Forge-2.1.1.jar     |YUNG’s Better Strongholds     |betterstrongholds             |1.18.2-Forge-2.1.1  |DONE      |Manifest: NOSIGNATURE
        TwilightDelight-1.18.2-1.1.4.jar                  |Twilight Delight              |twilightdelight               |1.1.4               |DONE      |Manifest: NOSIGNATURE
        cfm-7.0.0-pre35-1.18.2.jar                        |MrCrayfish’s Furniture Mod    |cfm                           |7.0.0-pre35         |DONE      |Manifest: NOSIGNATURE
        architectury-4.11.89-forge.jar                    |Architectury                  |architectury                  |4.11.89             |DONE      |Manifest: NOSIGNATURE
        curiouselytra-forge-1.18.1-5.0.1.0.jar            |Curious Elytra                |curiouselytra                 |1.18.1-5.0.1.0      |DONE      |Manifest: NOSIGNATURE
        globalxp-1.18.2-1.10.3.jar                        |Global XP                     |globalxp                      |1.10.3              |DONE      |Manifest: NOSIGNATURE
        trashcans-1.0.16-forge-mc1.18.jar                 |Trash Cans                    |trashcans                     |1.0.16              |DONE      |Manifest: NOSIGNATURE
        polylib-forge-1801.0.2-build.13.jar               |PolyLib                       |polylib                       |1801.0.2-build.13   |DONE      |Manifest: NOSIGNATURE
        CodeChickenLib-1.18.2-4.1.3.480-universal.jar     |CodeChicken Lib               |codechickenlib                |4.1.3.480           |DONE      |Manifest: 31:e6:db:63:47:4a:6e:e0:0a:2c:11:d1:76:db:4e:82:ff:56:2d:29:93:d2:e5:02:bd:d3:bd:9d:27:47:a5:71
        YungsBetterMineshafts-1.18.2-Forge-2.2.jar        |YUNG’s Better Mineshafts      |bettermineshafts              |1.18.2-Forge-2.2    |DONE      |Manifest: NOSIGNATURE
        ReSkin-forge-2.5.0.jar                            |Re:Skin                       |reskin                        |2.5.0               |DONE      |Manifest: NOSIGNATURE
        QuarkOddities-1.18.jar                            |Quark Oddities                |quarkoddities                 |1.18                |DONE      |Manifest: NOSIGNATURE
        inventorysorter-1.18-19.0.0.jar                   |Simple Inventory Sorter       |inventorysorter               |19.0.0              |DONE      |Manifest: NOSIGNATURE
        mowziesmobs-1.5.32.jar                            |Mowzie’s Mobs                 |mowziesmobs                   |1.5.32              |DONE      |Manifest: NOSIGNATURE
        geckolib-forge-1.18-3.0.57.jar                    |GeckoLib                      |geckolib3                     |3.0.57              |DONE      |Manifest: NOSIGNATURE
        Festive_Delight_1.0.jar                           |Festive Delight               |festive_delight               |1.0.0               |DONE      |Manifest: NOSIGNATURE
        ftb-library-forge-1802.3.9-build.167.jar          |FTB Library                   |ftblibrary                    |1802.3.9-build.167  |DONE      |Manifest: NOSIGNATURE
        ftb-teams-forge-1802.2.10-build.96.jar            |FTB Teams                     |ftbteams                      |1802.2.10-build.96  |DONE      |Manifest: NOSIGNATURE
        advanced-xray-forge-1.18.2-2.11.0-build.7.jar     |Advanced XRay                 |xray                          |1.18.2-2.11.0-build.|DONE      |Manifest: NOSIGNATURE
        jei-1.18.2-9.7.1.255.jar                          |Just Enough Items             |jei                           |9.7.1.255           |DONE      |Manifest: NOSIGNATURE
        caelus-forge-1.18.1-3.0.0.2.jar                   |Caelus API                    |caelus                        |1.18.1-3.0.0.2      |DONE      |Manifest: NOSIGNATURE
        waystones-forge-1.18.2-10.1.0.jar                 |Waystones                     |waystones                     |10.1.0              |DONE      |Manifest: NOSIGNATURE
        Clumps-forge-1.18.2-8.0.0+17.jar                  |Clumps                        |clumps                        |8.0.0+17            |DONE      |Manifest: NOSIGNATURE
        journeymap-1.18.2-5.9.3-forge.jar                 |Journeymap                    |journeymap                    |5.9.3               |DONE      |Manifest: NOSIGNATURE
        integrated_api_forge-1.0.0+1.18.2.jar             |Integrated API                |integrated_api                |1.0.0+1.18.2        |DONE      |Manifest: NOSIGNATURE
        comforts-forge-1.18.2-5.0.0.5.jar                 |Comforts                      |comforts                      |1.18.2-5.0.0.5      |DONE      |Manifest: NOSIGNATURE
        artifacts-1.18.2-4.2.0.jar                        |Artifacts                     |artifacts                     |1.18.2-4.2.0        |DONE      |Manifest: NOSIGNATURE
        LibX-1.18.2-3.2.19.jar                            |LibX                          |libx                          |1.18.2-3.2.19       |DONE      |Manifest: NOSIGNATURE
        Decorative Blocks-forge-1.18.2-2.1.2.jar          |Decorative Blocks             |decorative_blocks             |2.1.2               |DONE      |Manifest: NOSIGNATURE
        DungeonCrawl-1.18.2-2.3.10.jar                    |Dungeon Crawl                 |dungeoncrawl                  |2.3.10              |DONE      |Manifest: NOSIGNATURE
        curioofundying-forge-1.18-5.3.0.0.jar             |Curio of Undying              |curioofundying                |1.18-5.3.0.0        |DONE      |Manifest: NOSIGNATURE
        YungsBetterDesertTemples-1.18.2-Forge-1.3.1.jar   |YUNG’s Better Desert Temples  |betterdeserttemples           |1.18.2-Forge-1.3.1  |DONE      |Manifest: NOSIGNATURE
        rubidium_extras-1.18.2_v1.3.2.jar                 |Rubidium Extras               |rubidium_extras               |1.18.2_v1.3.2       |DONE      |Manifest: NOSIGNATURE
        ftb-chunks-forge-1802.3.13-build.234.jar          |FTB Chunks                    |ftbchunks                     |1802.3.13-build.234 |DONE      |Manifest: NOSIGNATURE
        3dskinlayers-forge-1.5.2-mc1.18.2.jar             |3dSkinLayers                  |skinlayers3d                  |1.5.2               |DONE      |Manifest: NOSIGNATURE
        forge-1.18.2-40.2.1-universal.jar                 |Forge                         |forge                         |40.2.1              |DONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90
        idas_forge-1.6.0+1.18.2.jar                       |Integrated Dungeons and Struct|idas                          |1.6.0+1.18.2        |DONE      |Manifest: NOSIGNATURE
        selene-1.18.2-1.17.9.jar                          |Selene                        |selene                        |1.18.2-1.17.9       |DONE      |Manifest: NOSIGNATURE
        supplementaries-1.18.2-1.5.16.jar                 |Supplementaries               |supplementaries               |1.18.2-1.5.16       |DONE      |Manifest: NOSIGNATURE
        ironchest-1.18.2-13.2.11.jar                      |Iron Chests                   |ironchest                     |1.18.2-13.2.11      |DONE      |Manifest: NOSIGNATURE
        MythicBotany-1.18.2-2.1.14.jar                    |MythicBotany                  |mythicbotany                  |1.18.2-2.1.14       |DONE      |Manifest: NOSIGNATURE
        DungeonsArise-1.18.2-2.1.52-release.jar           |When Dungeons Arise           |dungeons_arise                |2.1.52-1.18.2       |DONE      |Manifest: NOSIGNATURE
        client-1.18.2-20220404.173914-srg.jar             |Minecraft                     |minecraft                     |1.18.2              |DONE      |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f
        TConstruct-1.18.2-3.6.2.92.jar                    |Tinkers’ Construct            |tconstruct                    |3.6.2.92            |DONE      |Manifest: NOSIGNATURE
        EnchantmentDescriptions-Forge-1.18.2-10.0.12.jar  |EnchantmentDescriptions       |enchdesc                      |10.0.12             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5
        theoneprobe-1.18-5.1.2.jar                        |The One Probe                 |theoneprobe                   |1.18-5.1.2          |DONE      |Manifest: NOSIGNATURE
        TerraBlender-forge-1.18.2-1.2.0.126.jar           |TerraBlender                  |terrablender                  |1.2.0.126           |DONE      |Manifest: NOSIGNATURE
        MouseTweaks-forge-mc1.18-2.21.jar                 |Mouse Tweaks                  |mousetweaks                   |2.21                |DONE      |Manifest: NOSIGNATURE
        NethersDelight-1.18.2-2.2.0.jar                   |Nethers Delight               |nethersdelight                |2.2                 |DONE      |Manifest: NOSIGNATURE
        ChickenChunks-1.18.2-2.9.2.95-universal.jar       |ChickenChunks                 |chickenchunks                 |2.9.2.95            |DONE      |Manifest: 31:e6:db:63:47:4a:6e:e0:0a:2c:11:d1:76:db:4e:82:ff:56:2d:29:93:d2:e5:02:bd:d3:bd:9d:27:47:a5:71
        domum_ornamentum-1.18.2-1.0.50-ALPHA-universal.jar|Domum Ornamentum              |domum_ornamentum              |1.18.2-1.0.50-ALPHA |DONE      |Manifest: NOSIGNATURE
        mmlib-1.2.0-1.18.2.jar                            |Mysterious Mountain Lib       |mmlib                         |1.2.0-1.18.2        |DONE      |Manifest: NOSIGNATURE
        corn_delight-1.0.6-1.18.2.jar                     |Corn Delight                  |corn_delight                  |1.0.6-1.18.2        |DONE      |Manifest: NOSIGNATURE
        Iceberg-1.18.2-forge-1.0.49.jar                   |Iceberg                       |iceberg                       |1.0.49              |DONE      |Manifest: NOSIGNATURE
        flywheel-forge-1.18.2-0.6.8.a.jar                 |Flywheel                      |flywheel                      |0.6.8.a             |DONE      |Manifest: NOSIGNATURE
        create-1.18.2-0.5.0.i.jar                         |Create                        |create                        |0.5.0.i             |DONE      |Manifest: NOSIGNATURE
        FarmersRespite-1.18.2-1.3.0.jar                   |Farmer’s Respite              |farmersrespite                |1.18.1-1.3.0        |DONE      |Manifest: NOSIGNATURE
        Mantle-1.18.2-1.9.43.jar                          |Mantle                        |mantle                        |1.9.43              |DONE      |Manifest: NOSIGNATURE
        polymorph-forge-1.18.2-0.46.jar                   |Polymorph                     |polymorph                     |1.18.2-0.46         |DONE      |Manifest: NOSIGNATURE
        AutoRegLib-1.7-53.jar                             |AutoRegLib                    |autoreglib                    |1.7-53              |DONE      |Manifest: NOSIGNATURE
        Quark-3.2-358.jar                                 |Quark                         |quark                         |3.2-358             |DONE      |Manifest: NOSIGNATURE
        InventoryHud_[1.18].forge-3.4.4.jar               |Inventory HUD+(Forge edition) |inventoryhud                  |3.4.4               |DONE      |Manifest: NOSIGNATURE
        structurize-1.18.2-1.0.424-ALPHA.jar              |Structurize                   |structurize                   |1.18.2-1.0.424-ALPHA|DONE      |Manifest: NOSIGNATURE
        multi-piston-1.18.2-1.2.15-ALPHA.jar              |Multi-Piston                  |multipiston                   |1.18.2-1.2.15-ALPHA |DONE      |Manifest: NOSIGNATURE
        upgradedcore-1.18.2-3.2.0.0-release.jar           |Upgraded Core                 |upgradedcore                  |1.18.2-3.2.0.0-relea|DONE      |Manifest: NOSIGNATURE
        minecolonies-1.18.2-1.0.966-RELEASE.jar           |MineColonies                  |minecolonies                  |1.18.2-1.0.966-RELEA|DONE      |Manifest: NOSIGNATURE
        appleskin-forge-mc1.18.2-2.4.1.jar                |AppleSkin                     |appleskin                     |2.4.1+mc1.18.2      |DONE      |Manifest: NOSIGNATURE
        lootr-1.18.2-0.2.23.60.jar                        |Lootr                         |lootr                         |0.2.21.58           |DONE      |Manifest: NOSIGNATURE
        engineersdecor-1.18.2-1.1.28.jar                  |Engineer’s Decor              |engineersdecor                |1.1.28              |DONE      |Manifest: bf:30:76:97:e4:58:41:61:2a:f4:30:d3:8f:4c:e3:71:1d:14:c4:a1:4e:85:36:e3:1d:aa:2f:cb:22:b0:04:9b
        largemeals-1.18.2-2.0.jar                         |Large Meals                   |largemeals                    |1.18.2-2.0          |DONE      |Manifest: NOSIGNATURE
        italianDelight-1.18.2-FIX-RELEASE-1.1.jar         |Italian Delight               |italian_delight               |0.8                 |DONE      |Manifest: NOSIGNATURE
        Oh_The_Biomes_You’ll_Go-forge-1.18.2-1.4.7.jar    |Oh The Biomes You’ll Go       |byg                           |1.4                 |DONE      |Manifest: NOSIGNATURE
        justzoom_forge_1.0.1_MC_1.18-1.18.1.jar           |Just Zoom                     |justzoom                      |1.0.1               |DONE      |Manifest: NOSIGNATURE
        Aquaculture-1.18.2-2.3.10.jar                     |Aquaculture 2                 |aquaculture                   |1.18.2-2.3.10       |DONE      |Manifest: NOSIGNATURE
        expandability-6.0.0.jar                           |ExpandAbility                 |expandability                 |6.0.0               |DONE      |Manifest: NOSIGNATURE
        Delightful-1.18.2-2.6.jar                         |Delightful                    |delightful                    |2.6                 |DONE      |Manifest: NOSIGNATURE
        CosmeticArmorReworked-1.18.2-v2a.jar              |CosmeticArmorReworked         |cosmeticarmorreworked         |1.18.2-v2a          |DONE      |Manifest: 5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53
        createaddition-1.18.2-20230203a.jar               |Create Crafts & Additions     |createaddition                |1.18.2-20230203a    |DONE      |Manifest: NOSIGNATURE
    Crash Report UUID: 82120cd5-3b8f-4f78-b617-e2ad9affab93
    FML: 40.2
    Forge: net.minecraftforge:40.2.1
    Flywheel Backend: GL33 Instanced Arrays

The server crashed after the first one. The others are just ones I found weird

  • [Tue 23:31:28 ERROR Minecraft/IAsyncTaskHandler] Error executing task on Chunk source main thread executor for minecraft:overworld java.lang.NegativeArraySizeException: -1 at java.base/java.util.HashMap$KeySet.toArray(HashMap.java:993) at com.google.common.collect.ImmutableList.copyOf(ImmutableList.java:265) at net.minecraft.world.level.chunk.LevelChunk.postProcessGeneration(LevelChunk.java:1011) at net.minecraft.world.level.chunk.LevelChunk.lambda$onNeighbourChange$1(LevelChunk.java:221) at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) at net.minecraft.server.level.ServerChunkCache$MainThreadExecutor.doRunTask(ServerChunkCache.java:1248) at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) at net.minecraft.server.level.ServerChunkCache$MainThreadExecutor.pollTask(ServerChunkCache.java:1261) at net.minecraft.server.level.ServerChunkCache.pollTask(ServerChunkCache.java:821) at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1346) at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1328) at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1306) at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1191) at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:302) at java.base/java.lang.Thread.run(Thread.java:833)

  • [Tue 23:32:05 ERROR Plan] TPS Count Task Disabled due to error, reload Plan to re-enable.

  • [Tue 23:32:05 ERROR Plan] Ran into CompletionException — logged to plugins/Plan/logs/CompletionException-84d8d9bd9e.txt

  • [Tue 23:32:05 ERROR Plan] (INCLUDE CONTENTS OF THE FILE IN ANY REPORTS)

  • [Tue 23:32:05 ERROR Plan] What to do: See if a restart fixes this or Report this ! [Tue 23:32:18 WARN Minecraft] Null tileentity detected in chunk at position x: 1347, z: -2193

2

! [Tue 23:43:27 WARN Minecraft/PersistentEntitySectionManager] UUID of added entity already exists: EntityVillager[‘Leatherworker’/2792, uuid=’00000000-6db2-4ec3-bfff-ffff885bde77′, l=’ServerLevel[119121]’, x=-48558.48, y=62.94, z=-64097.26, cpos=[-3035, -4007], tl=572844, v=false] [

  • [Tue 23:46:25 ERROR Minecraft] — DO NOT REPORT THIS TO PAPER — THIS IS NOT A BUG OR A CRASH — git-Paper-«55201f0» (MC: 1.19) —

  • [Tue 23:46:25 ERROR Minecraft] The server has not responded for 10 seconds! Creating thread dump

  • [Tue 23:46:25 ERROR Minecraft] ——————————

  • [Tue 23:46:25 ERROR Minecraft] Server thread dump (Look for plugins here before reporting to Paper!):

  • [Tue 23:46:25 ERROR Minecraft] Ticking entity: minecraft:player, entity class: net.minecraft.server.level.EntityPlayer

  • [Tue 23:46:25 ERROR Minecraft] Entity status: removed: false, valid: true, alive: true, is passenger: false

  • [Tue 23:46:25 ERROR Minecraft] Entity UUID: 1f3cf246-8b8a-412c-8029-b1e4df0d6439

  • [Tue 23:46:25 ERROR Minecraft] Position: world: ‘119121’ at location (21985.611534038955, 51.38780789629585, -35567.68794312334)

  • [Tue 23:46:25 ERROR Minecraft] Velocity: (-0.0011732883472609355, -0.024961315844865335, 0.0019251400709689806) (in blocks per tick)

3

  • [Tue 23:46:35 ERROR Minecraft] net.minecraft.world.level.chunk.ChunkGenerator.getFirstOccupiedHeight(ChunkGenerator.java:905)

  • [Tue 23:46:35 ERROR Minecraft] net.minecraft.world.level.levelgen.structure.Structure.onTopOfChunkCenter(Structure.java:99)

  • [Tue 23:46:35 ERROR Minecraft] net.minecraft.world.level.levelgen.structure.structures.BuriedTreasureStructure.findGenerationPoint(BuriedTreasureStructure.java:20)

  • [Tue 23:46:35 ERROR Minecraft] net.minecraft.world.level.levelgen.structure.StructureCheck.canCreateStructure(StructureCheck.java:92)

  • [Tue 23:46:35 ERROR Minecraft] net.minecraft.world.level.levelgen.structure.StructureCheck.lambda$checkStart$1(StructureCheck.java:84)

  • [Tue 23:46:35 ERROR Minecraft] net.minecraft.world.level.levelgen.structure.StructureCheck$$Lambda$10181/0x0000000802ae10f0.get(Unknown Source)

  • [Tue 23:46:35 ERROR Minecraft] it.unimi.dsi.fastutil.longs.Long2BooleanOpenHashMap.computeIfAbsent(Long2BooleanOpenHashMap.java:496)

  • [Tue 23:46:35 ERROR Minecraft] net.minecraft.world.level.levelgen.structure.StructureCheck.checkStart(StructureCheck.java:83)

  • [Tue 23:46:35 ERROR Minecraft] net.minecraft.world.level.StructureManager.checkStructurePresence(StructureManager.java:166)

  • [Tue 23:46:35 ERROR Minecraft] net.minecraft.world.level.chunk.ChunkGenerator.getStructureGeneratingAt(ChunkGenerator.java:480)

  • [Tue 23:46:35 ERROR Minecraft] net.minecraft.world.level.chunk.ChunkGenerator.getNearestGeneratedStructure(ChunkGenerator.java:450)

  • [Tue 23:46:35 ERROR Minecraft] net.minecraft.world.level.chunk.ChunkGenerator.findNearestMapStructure(ChunkGenerator.java:379)

  • [Tue 23:46:35 ERROR Minecraft] net.minecraft.server.level.ServerLevel.findNearestMapFeature(ServerLevel.java:1905)

  • [Tue 23:46:35 ERROR Minecraft] net.minecraft.server.level.ServerLevel.findNearestMapStructure(ServerLevel.java:1898)

При наведении на алюминиевый провод выводит информацию об ошибки но майнкрафт не вылетает. Хотелось бы решить ее.

—- Minecraft Crash Report —-
// Uh… Did I do that?

Time: 2020-12-05 22:22:54 NOVT
Description: Error executing task

java.util.concurrent.ExecutionException: java.lang.NullPointerException
    at java.util.concurrent.FutureTask.report(Unknown Source)
    at java.util.concurrent.FutureTask.get(Unknown Source)
    at net.minecraft.util.Util.runTask(Util.java:531)
    at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:723)
    at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:668)
    at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:279)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526)
    at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.NullPointerException


A detailed walkthrough of the error, its code path and all known details is as follows:
—————————————————————————————

— System Details —
  Minecraft Version: 1.12.2
  Operating System: Windows 8.1 (amd64) version 6.3
  Java Version: 1.8.0_51, Oracle Corporation
  Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
  Memory: 9767553512 bytes (9315 MB) / 12784238592 bytes (12192 MB) up to 12784238592 bytes (12192 MB)
  JVM Flags: 8 total; -Xmn128M -Xmx12162M -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M
  IntCache: cache: 0, tcache: 0, allocated: 6, tallocated: 105
  FML: MCP 9.42 Powered by Forge 14.23.5.2854 Optifine OptiFine_1.12.2_HD_U_F5 82 mods loaded, 82 mods active
       States: ‘U’ = Unloaded ‘L’ = Loaded ‘C’ = Constructed ‘H’ = Pre-initialized ‘I’ = Initialized ‘J’ = Post-initialized ‘A’ = Available ‘D’ = Disabled ‘E’ = Errored

       
       | State  | ID                                | Version               | Source                                            | Signature                                |
       |:—— |:——————————— |:——————— |:————————————————- |:—————————————- |
       | LCHIJA | minecraft                         | 1.12.2                | minecraft.jar                                     | None                                     |
       | LCHIJA | mcp                               | 9.42                  | minecraft.jar                                     | None                                     |
       | LCHIJA | FML                               | 8.0.99.99             | forge-1.12.2-14.23.5.2854.jar                     | e3c3d50c7c986df74c645c0ac54639741c90a557 |
       | LCHIJA | forge                             | 14.23.5.2854          | forge-1.12.2-14.23.5.2854.jar                     | e3c3d50c7c986df74c645c0ac54639741c90a557 |
       | LCHIJA | micdoodlecore                     |                       | minecraft.jar                                     | None                                     |
       | LCHIJA | ClientFixer                       | 1.12.2-1.9            | minecraft.jar                                     | None                                     |
       | LCHIJA | randompatches                     | 1.12.2-1.22.0.0       | randompatches-1.12.2-1.22.0.0.jar                 | None                                     |
       | LCHIJA | ic2                               | 2.8.170-ex112         | industrialcraft-2-2.8.170-ex112.jar               | de041f9f6187debbc77034a344134053277aa3b0 |
       | LCHIJA | advanced_solar_panels             | 4.3.0                 | Advanced+Solar+Panels-4.3.0.jar                   | None                                     |
       | LCHIJA | appliedenergistics2               | rv6-stable-7          | appliedenergistics2_rv6_stable_7.jar              | dfa4d3ac143316c6f32aa1a1beda1e34d42132e5 |
       | LCHIJA | aroma1997core                     | 2.0.0.2               | Aroma1997Core_1.12.2_2.0.0.2.jar                  | dfbfe4c473253d8c5652417689848f650b2cbe32 |
       | LCHIJA | aromabackup                       | 3.0.0.0.b113          | AromaBackup_1.12.2_3.0.0.0.b113.jar               | dfbfe4c473253d8c5652417689848f650b2cbe32 |
       | LCHIJA | aromabackuprecovery               | 3.0.0.0.b113          | AromaBackup_1.12.2_3.0.0.0.b113.jar               | dfbfe4c473253d8c5652417689848f650b2cbe32 |
       | LCHIJA | baubles                           | 1.5.2                 | Baubles-1.12-1.5.2.jar                            | None                                     |
       | LCHIJA | biomesoplenty                     | 7.0.1.2444            | BiomesOPlenty_1.12.2_7.0.1.2444_universal (1).jar | None                                     |
       | LCHIJA | buildcraftlib                     | 7.99.24.7             | buildcraft_1.12.2_all_7.99.24.7.jar               | None                                     |
       | LCHIJA | buildcraftcore                    | 7.99.24.7             | buildcraft_1.12.2_all_7.99.24.7.jar               | None                                     |
       | LCHIJA | buildcraftbuilders                | 7.99.24.7             | buildcraft_1.12.2_all_7.99.24.7.jar               | None                                     |
       | LCHIJA | buildcrafttransport               | 7.99.24.7             | buildcraft_1.12.2_all_7.99.24.7.jar               | None                                     |
       | LCHIJA | buildcraftsilicon                 | 7.99.24.7             | buildcraft_1.12.2_all_7.99.24.7.jar               | None                                     |
       | LCHIJA | buildcraftcompat                  | 7.99.24.7             | buildcraft_1.12.2_all_7.99.24.7.jar               | None                                     |
       | LCHIJA | buildcraftenergy                  | 7.99.24.7             | buildcraft_1.12.2_all_7.99.24.7.jar               | None                                     |
       | LCHIJA | buildcraftfactory                 | 7.99.24.7             | buildcraft_1.12.2_all_7.99.24.7.jar               | None                                     |
       | LCHIJA | buildcraftrobotics                | 7.99.24.7             | buildcraft_1.12.2_all_7.99.24.7.jar               | None                                     |
       | LCHIJA | carryon                           | 1.12                  | CarryOnMC1.12.2v1.12.jar                          | None                                     |
       | LCHIJA | chameleon                         | 1.12-4.1.3            | Chameleon-1.12-4.1.3.jar                          | None                                     |
       | LCHIJA | champions                         | 1.12.2-1.0.11.9       | champions-1.12.2-1.0.11.9.jar                     | 2484ef4d131fdc0dca0647aa21b7b944ddb935a1 |
       | LCHIJA | clumps                            | 3.1.2                 | Clumps-3.1.2.jar                                  | None                                     |
       | LCHIJA | codechickenlib                    | 3.2.3.358             | CodeChickenLib-1.12.2-3.2.3.358-universal.jar     | f1850c39b2516232a2108a7bd84d1cb5df93b261 |
       | LCHIJA | dummycore                         | 2.4.112.5.            | dummycoreunofficial-2.4.112.5.jar                 | None                                     |
       | LCHIJA | galacticraftcore                  | 4.0.2.280             | GalacticraftCore-1.12.2-4.0.2.280.jar             | None                                     |
       | LCHIJA | orelib                            | 3.6.0.1               | OreLib-1.12.2-3.6.0.1.jar                         | 7a2128d395ad96ceb9d9030fbd41d035b435753a |
       | LCHIJA | dsurround                         | 3.6.1.0               | DynamicSurroundings-1.12.2-3.6.1.0.jar            | 7a2128d395ad96ceb9d9030fbd41d035b435753a |
       | LCHIJA | endercore                         | 1.12.2-0.5.76         | EnderCore-1.12.2-0.5.76.jar                       | None                                     |
       | LCHIJA | jei                               | 4.15.0.296            | jei_1.12.2-4.15.0.296.jar                         | None                                     |
       | LCHIJA | thaumcraft                        | 6.1.BETA26            | Thaumcraft_1.12.2_6.1.BETA26.jar                  | None                                     |
       | LCHIJA | enderio                           | 5.2.62                | EnderIO-1.12.2-5.2.62.jar                         | None                                     |
       | LCHIJA | enderiointegrationtic             | 5.2.62                | EnderIO-1.12.2-5.2.62.jar                         | None                                     |
       | LCHIJA | enderiobase                       | 5.2.62                | EnderIO-1.12.2-5.2.62.jar                         | None                                     |
       | LCHIJA | enderioconduits                   | 5.2.62                | EnderIO-1.12.2-5.2.62.jar                         | None                                     |
       | LCHIJA | enderioconduitsappliedenergistics | 5.2.62                | EnderIO-1.12.2-5.2.62.jar                         | None                                     |
       | LCHIJA | enderioconduitsopencomputers      | 5.2.62                | EnderIO-1.12.2-5.2.62.jar                         | None                                     |
       | LCHIJA | enderiointegrationforestry        | 5.2.62                | EnderIO-1.12.2-5.2.62.jar                         | None                                     |
       | LCHIJA | enderiointegrationticlate         | 5.2.62                | EnderIO-1.12.2-5.2.62.jar                         | None                                     |
       | LCHIJA | enderiomachines                   | 5.2.62                | EnderIO-1.12.2-5.2.62.jar                         | None                                     |
       | LCHIJA | enderiopowertools                 | 5.2.62                | EnderIO-1.12.2-5.2.62.jar                         | None                                     |
       | LCHIJA | galacticraftplanets               | 4.0.2.280             | Galacticraft-Planets-1.12.2-4.0.2.280.jar         | None                                     |
       | LCHIJA | mjrlegendslib                     | 1.12.2-1.1.9          | MJRLegendsLib-1.12.2-1.1.9.jar                    | b02331787272ec3515ebe63ecdeea0d746653468 |
       | LCHIJA | extraplanets                      | 1.12.2-0.6.3          | ExtraPlanets-1.12.2-0.6.3.jar                     | b02331787272ec3515ebe63ecdeea0d746653468 |
       | LCHIJA | extrautils2                       | 1.0                   | extrautils2_1.12_1.9.8.jar                        | None                                     |
       | LCHIJA | fastleafdecay                     | v14                   | FastLeafDecay_1.12.2_v14.jar                      | None                                     |
       | LCHIJA | fastbench                         | 1.7.2                 | FastWorkbench-1.12.2-1.7.2.jar                    | None                                     |
       | LCHIJA | gottschcore                       | 1.13.1                | GottschCore-mc1.12.2-f14.23.5.2768-v1.13.1.jar    | None                                     |
       | LCHIJA | gravestone                        | 1.10.0                | gravestone_mc1.12.2_1.10.0.jar                    | None                                     |
       | LCHIJA | gravisuite                        | 3.1.1                 | GravitationSuite_1.12.2_3.1.1.jar                 | None                                     |
       | LCHIJA | guideapi                          | 1.12-2.1.8-63         | Guide-API-1.12-2.1.8-63.jar                       | None                                     |
       | LCHIJA | holoinventory                     | 2.1.0.150             | HoloInventory_1.12.2_2.1.0.150.jar                | None                                     |
       | LCHIJA | waila                             | 1.8.26                | Hwyla_1.8.26_B41_1.12.2.jar                       | None                                     |
       | LCHIJA | inventorysorter                   | 1.13.3+57             | inventorysorter-1.12.2-1.13.357.jar               | None                                     |
       | LCHIJA | ironchest                         | 1.12.2-7.0.48.833     | ironchest_1.12.2_7.0.48.833.jar                   | None                                     |
       | LCHIJA | journeymap                        | 1.12.2-5.7.1          | journeymap_1.12.2_5.7.1.jar                       | None                                     |
       | LCHIJA | mousetweaks                       | 2.10                  | MouseTweaks_2.10_mc1.12.2.jar                     | None                                     |
       | LCHIJA | nei                               | 2.4.3                 | NotEnoughItems_1.12.2_2.4.3.245_universal (1).jar | f1850c39b2516232a2108a7bd84d1cb5df93b261 |
       | LCHIJA | ruins                             | 17.2                  | Ruins-1.12.2.jar                                  | None                                     |
       | LCHIJA | storagedrawers                    | 5.2.2                 | StorageDrawers-1.12.2-5.4.2.jar                   | None                                     |
       | LCHIJA | surge                             | 2.0.77                | Surge-1.12.2-2.0.77.jar                           | d476d1b22b218a10d845928d1665d45fce301b27 |
       | LCHIJA | tc6aspects4jei                    | 0.0.2a                | tc6aspects4jei-0.0.2a.jar                         | None                                     |
       | LCHIJA | thaumicbases                      | 3.3.400.6r            | thaumicbases-3.3.360.6r (1).jar                   | None                                     |
       | LCHIJA | thaumicbrewing                    | 1.0.2                 | thaumicbrewing-1.0.2.jar                          | None                                     |
       | LCHIJA | thaumicjei                        | 1.6.0                 | ThaumicJEI-1.12.2-1.6.0-27.jar                    | None                                     |
       | LCHIJA | thaumicenergistics                | 2.2.3                 | thaumicenergistics_1.12.2_2.2.4.jar               | None                                     |
       | LCHIJA | tcinventoryscan                   | 2.0.10                | ThaumicInventoryScanning_1.12.2-2.0.10.jar        | None                                     |
       | LCHIJA | thaumictinkerer                   | 1.12.2-5.0-620a0c5    | thaumictinkerer-1.12.2-5.0-620a0c5.jar            | None                                     |
       | LCHIJA | tlauncher_custom_cape_skin        | 1.4                   | tlskincape_1.12.2-1.4.jar                         | None                                     |
       | LCHIJA | treasure2                         | 1.12.0                | Treasure2-mc1.12.2-f14.23.5.2768-v1.12.0.jar      | None                                     |
       | LCHIJA | uteamcore                         | 2.2.4.107             | u_team_core-1.12.2-2.2.4.107.jar                  | None                                     |
       | LCHIJA | unloader                          | 1.2.0                 | unloader-1.2.0.jar                                | None                                     |
       | LCHIJA | usefulbackpacks                   | 1.5.0.23              | useful_backpacks-1.12.2-1.5.0.23.jar              | None                                     |
       | LCHIJA | vanillafix                        | 1.0.10-150            | vanillafix-1.0.10-150.jar                         | None                                     |
       | LCHIJA | wailaharvestability               | 1.1.12                | WailaHarvestability_mc1.12_1.1.12.jar             | None                                     |
       | LCHIJA | nofog                             | 1.12.2-1.12.2-1.0.3.0 | nofog-1.12.2b3.jar                                | 0bf221d944c89aaf3ccb7b8315148f222be50739 |
       | LCHIJA | phosphor-lighting                 | 1.12.2-0.2.7          | phosphor-forge-mc1.12.2-0.2.7-universal.jar       | None                                     |
  Loaded coremods (and transformers): ClientFixer (clientfixer-1.12.2-1.9.jar)
                                        com.gamerforea.clientfixer.asm.ASMTransformer
                                      TransformLoader (DynamicSurroundings-1.12.2-3.6.1.0.jar)

                                        
                                      EnderCorePlugin (EnderCore-1.12.2-0.5.76-core.jar)
                                        com.enderio.core.common.transform.EnderCoreTransformer
                                        com.enderio.core.common.transform.SimpleMixinPatcher
                                      DCLoadingPlugin (dummycoreunofficial-2.4.112.5.jar)
                                        DummyCore.ASM.DCASMManager
                                      RandomPatches (randompatches-1.12.2-1.22.0.0.jar)
                                        com.therandomlabs.randompatches.core.RPTransformer
                                      MicdoodlePlugin (MicdoodleCore-1.12.2-4.0.2.280.jar)
                                        micdoodle8.mods.miccore.MicdoodleTransformer
                                      SurgeLoadingPlugin (Surge-1.12.2-2.0.77.jar)

                                        
                                      VanillaFixLoadingPlugin (vanillafix-1.0.10-150.jar)

                                        
                                      PhosphorFMLLoadingPlugin (phosphor-forge-mc1.12.2-0.2.7-universal.jar)

                                        
                                      TLSkinCapeHookLoader (tlskincape_1.12.2-1.4.jar)
                                        gloomyfolken.hooklib.minecraft.PrimaryClassTransformer
                                      CoreMod (Aroma1997Core_1.12.2_2.0.0.2.jar)
  GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.
  AE2 Version: stable rv6-stable-7 for Forge 14.23.5.2768
  Ender IO: Found the following problem(s) with your installation (That does NOT mean that Ender IO caused the crash or was involved in it in any way. We add this information to help finding common problems, not as an invitation to post any crash you encounter to Ender IO’s issue tracker. Always check the stack trace above to see which mod is most likely failing.):
                              * Optifine is installed. This is NOT supported.
                             This may (look up the meaning of ‘may’ in the dictionary if you’re not sure what it means) have caused the error. Try reproducing the crash WITHOUT this/these mod(s) before reporting it.
            Authlib is : /C:/Users/%d0%90%d1%81%d0%b5%d1%80/AppData/Roaming/.minecraft/libraries/org/tlauncher/authlib/1.6.25/authlib-1.6.25.jar

            
            !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
            !!!You are looking at the diagnostics information, not at the crash.       !!!
            !!!Scroll up until you see the line with ‘—- Minecraft Crash Report —-‘!!!
            !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  [DummyCore]: ‘Special case ASM modification mods: »Note, that these mods might not be involved in the crash in ANY WAY!»DummyCore just prints some known mods for a lot of ASM modifications»dummycore»EnderCore»CodeChickenLib’
  AE2 Integration: IC2:ON, RC:OFF, MFR:OFF, Waila:ON, InvTweaks:OFF, JEI:ON, Mekanism:OFF, OpenComputers:OFF, THE_ONE_PROBE:OFF, TESLA:OFF, CRAFTTWEAKER:OFF
  Suspected Mods: Unknown

Semx11


  • #1

If you play on Hypixel with Minecraft 1.8 — 1.8.9, your console output most likely looks something like this:

841d4cac5d0f7e0b11dc26380fa24c66.gif

This can be extremely annoying when you try to read console output/debug something.

This fix removes the following messages:
— Error executing task: <stacktrace>

— Item <number> has no entity!?
— Unable to play unknown soundEvent: <sound>

This fix is for both Forge and Vanilla Minecraft.

Minecraft uses Apache’s Log4j 2. This is a Java library for logging and has a lot of options that can be modified using configuration files.

I added a regex filter to Minecraft’s Log4j configuration files in order to suppress these messages.


Notes:
— It will suppress all ‘Error executing task’ stacktraces thrown by net.minecraft.util.Util.runTask().
— It will also remove these messages from the log files (logs/latest.log)
— It will not remove any chat messages containing these words.
— Feel free to alter the XML file to fit your needs. I don’t need credit!

Note: The Forge console does not work with the new launcher.
This fix only works properly with the old launcher, as you can specify JVM arguments per profile.
Get the old launcher here: https://minecraft.net/en-us/download/alternative (second option)

You only have to follow the steps for the versions you will use (Forge and/or Vanilla).

How to fix


Step 1
Navigate to .minecraft/config and create the following XML file(s):
— log4j2-spamfix-forge.xml
— log4j2-spamfix-vanilla.xml

Step 2

Forge: open log4j2-spamfix-forge.xml and paste in the following XML:

Code:

<?xml version="1.0" encoding="UTF-8"?>
<!-- Author: Mojang/FML, Modified by Semx11 -->
<Configuration status="WARN" packages="com.mojang.util">
    <Appenders>
        <Console name="FmlSysOut" target="SYSTEM_OUT">
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger]: %msg%n" />
        </Console>
        <Console name="SysOut" target="SYSTEM_OUT">
            <RegexFilter regex="^(Error executing task|Unable to play unknown soundEvent|Item entity d+ has no item?!).*" onMatch="DENY" onMismatch="NEUTRAL"/>
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %msg%n" />
        </Console>
        <Queue name="ServerGuiConsole">
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger]: %msg%n" />
        </Queue>
        <RollingRandomAccessFile name="File" fileName="logs/latest.log" filePattern="logs/%d{yyyy-MM-dd}-%i.log.gz">
            <RegexFilter regex="^(Error executing task|Unable to play unknown soundEvent|Item entity d+ has no item?!).*" onMatch="DENY" onMismatch="NEUTRAL"/>
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %msg%n" />
            <Policies>
                <TimeBasedTriggeringPolicy />
                <OnStartupTriggeringPolicy />
            </Policies>
        </RollingRandomAccessFile>
        <Routing name="FmlFile">
            <Routes pattern="$${ctx:side}">
                <Route>
                    <RollingRandomAccessFile name="FmlFile" fileName="logs/fml-${ctx:side}-latest.log" filePattern="logs/fml-${ctx:side}-%i.log">
                        <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger/%X{mod}]: %msg%n" />
                        <DefaultRolloverStrategy max="3" fileIndex="max" />
                        <Policies>
                            <OnStartupTriggeringPolicy />
                        </Policies>
                    </RollingRandomAccessFile>
                </Route>
                <Route key="$${ctx:side}">
                    <RandomAccessFile name="FmlFile" fileName="logs/fml-junk-earlystartup.log" >
                        <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger]: %msg%n" />
                    </RandomAccessFile>
                </Route>
            </Routes>
        </Routing>
    </Appenders>
    <Loggers>
        <Logger level="info" name="com.mojang" additivity="false">
            <AppenderRef ref="SysOut" level="INFO" />
            <AppenderRef ref="File" />
            <AppenderRef ref="ServerGuiConsole" level="INFO" />
        </Logger>
        <Logger level="info" name="net.minecraft" additivity="false">
            <filters>
                <MarkerFilter marker="NETWORK_PACKETS" onMatch="DENY" onMismatch="NEUTRAL" />
            </filters>
            <AppenderRef ref="SysOut" level="INFO" />
            <AppenderRef ref="File" />
            <AppenderRef ref="ServerGuiConsole" level="INFO" />
        </Logger>
        <Root level="all">
            <AppenderRef ref="FmlSysOut" level="INFO" />
            <AppenderRef ref="ServerGuiConsole" level="INFO" />
            <AppenderRef ref="FmlFile"/>
        </Root>
    </Loggers>
</Configuration>

Vanilla: open log4j2-spamfix-vanilla.xml and paste in the following XML:

Code:

<?xml version="1.0" encoding="UTF-8"?>
<!-- Author: Mojang, Modified by Semx11 -->
<Configuration status="WARN">
    <Appenders>
        <Console name="SysOut" target="SYSTEM_OUT">
            <RegexFilter regex="^(Error executing task|Unable to play unknown soundEvent|Item entity d+ has no item?!).*" onMatch="DENY" onMismatch="NEUTRAL"/>
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %msg%n" />
        </Console>
        <RollingRandomAccessFile name="File" fileName="logs/latest.log" filePattern="logs/%d{yyyy-MM-dd}-%i.log.gz">
            <RegexFilter regex="^(Error executing task|Unable to play unknown soundEvent|Item entity d+ has no item?!).*" onMatch="DENY" onMismatch="NEUTRAL"/>
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %msg%n" />
            <Policies>
                <TimeBasedTriggeringPolicy />
                <OnStartupTriggeringPolicy />
            </Policies>
        </RollingRandomAccessFile>
    </Appenders>
    <Loggers>
        <Root level="info">
            <filters>
                <MarkerFilter marker="NETWORK_PACKETS" onMatch="DENY" onMismatch="NEUTRAL" />
            </filters>
            <AppenderRef ref="SysOut"/>
            <AppenderRef ref="File"/>
        </Root>
    </Loggers>
</Configuration>

Click here to view the XML files on Gist

Step 3

  1. Open the Minecraft launcher and select the profile you want to use.
  2. Click on ‘Edit Profile’.
  3. If you haven’t already, tick the box ‘JVM Arguments’.
  4. Paste the following flag at the end:
    Forge:
    -Dlog4j.configurationFile=config/log4j2-spamfix-forge.xml
    Vanilla:
    -Dlog4j.configurationFile=config/log4j2-spamfix-vanilla.xml
  5. Click on ‘Save Profile’ and enjoy!

I have been trying to find a fix for this for months now, and finally got it working today.
Hope this helps someone.

Happy debugging!
I put way too much effort into this. Seriously.

Sk1er


  • #2

Yes. I can finally see stack traces in console Instead of having to print them to minecraft chat

2Pi

2Pi

Dedicated Member


Q__T


  • #4

If you play on Hypixel with Minecraft 1.8 — 1.8.9, your console output most likely looks something like this:

841d4cac5d0f7e0b11dc26380fa24c66.gif

This can be extremely annoying when you try to read console output/debug something.

This fix removes the following messages:
— Error executing task: <stacktrace>

— Item <number> has no entity!?
— Unable to play unknown soundEvent: <sound>

This fix is for both Forge and Vanilla Minecraft.

Minecraft uses Apache’s Log4j 2. This is a Java library for logging and has a lot of options that can be modified using configuration files.

I added a regex filter to Minecraft’s Log4j configuration files in order to suppress these messages.


Notes:
— It will suppress all ‘Error executing task’ stacktraces thrown by net.minecraft.util.Util.runTask().
— It will also remove these messages from the log files (logs/latest.log)
— It will not remove any chat messages containing these words.
— Feel free to alter the XML file to fit your needs. I don’t need credit!

Note: The Forge console does not work with the new launcher.
This fix only works properly with the old launcher, as you can specify JVM arguments per profile.
Get the old launcher here: https://minecraft.net/en-us/download/alternative (second option)

You only have to follow the steps for the versions you will use (Forge and/or Vanilla).

How to fix


Step 1
Navigate to .minecraft/config and create the following XML file(s):
— log4j2-spamfix-forge.xml
— log4j2-spamfix-vanilla.xml

Step 2

Forge: open log4j2-spamfix-forge.xml and paste in the following XML:

Code:

<?xml version="1.0" encoding="UTF-8"?>
<!-- Author: Mojang/FML, Modified by Semx11 -->
<Configuration status="WARN" packages="com.mojang.util">
    <Appenders>
        <Console name="FmlSysOut" target="SYSTEM_OUT">
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger]: %msg%n" />
        </Console>
        <Console name="SysOut" target="SYSTEM_OUT">
            <RegexFilter regex="^(Error executing task|Unable to play unknown soundEvent|Item entity d+ has no item?!).*" onMatch="DENY" onMismatch="NEUTRAL"/>
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %msg%n" />
        </Console>
        <Queue name="ServerGuiConsole">
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger]: %msg%n" />
        </Queue>
        <RollingRandomAccessFile name="File" fileName="logs/latest.log" filePattern="logs/%d{yyyy-MM-dd}-%i.log.gz">
            <RegexFilter regex="^(Error executing task|Unable to play unknown soundEvent|Item entity d+ has no item?!).*" onMatch="DENY" onMismatch="NEUTRAL"/>
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %msg%n" />
            <Policies>
                <TimeBasedTriggeringPolicy />
                <OnStartupTriggeringPolicy />
            </Policies>
        </RollingRandomAccessFile>
        <Routing name="FmlFile">
            <Routes pattern="$${ctx:side}">
                <Route>
                    <RollingRandomAccessFile name="FmlFile" fileName="logs/fml-${ctx:side}-latest.log" filePattern="logs/fml-${ctx:side}-%i.log">
                        <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger/%X{mod}]: %msg%n" />
                        <DefaultRolloverStrategy max="3" fileIndex="max" />
                        <Policies>
                            <OnStartupTriggeringPolicy />
                        </Policies>
                    </RollingRandomAccessFile>
                </Route>
                <Route key="$${ctx:side}">
                    <RandomAccessFile name="FmlFile" fileName="logs/fml-junk-earlystartup.log" >
                        <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger]: %msg%n" />
                    </RandomAccessFile>
                </Route>
            </Routes>
        </Routing>
    </Appenders>
    <Loggers>
        <Logger level="info" name="com.mojang" additivity="false">
            <AppenderRef ref="SysOut" level="INFO" />
            <AppenderRef ref="File" />
            <AppenderRef ref="ServerGuiConsole" level="INFO" />
        </Logger>
        <Logger level="info" name="net.minecraft" additivity="false">
            <filters>
                <MarkerFilter marker="NETWORK_PACKETS" onMatch="DENY" onMismatch="NEUTRAL" />
            </filters>
            <AppenderRef ref="SysOut" level="INFO" />
            <AppenderRef ref="File" />
            <AppenderRef ref="ServerGuiConsole" level="INFO" />
        </Logger>
        <Root level="all">
            <AppenderRef ref="FmlSysOut" level="INFO" />
            <AppenderRef ref="ServerGuiConsole" level="INFO" />
            <AppenderRef ref="FmlFile"/>
        </Root>
    </Loggers>
</Configuration>

Vanilla: open log4j2-spamfix-vanilla.xml and paste in the following XML:

Code:

<?xml version="1.0" encoding="UTF-8"?>
<!-- Author: Mojang, Modified by Semx11 -->
<Configuration status="WARN">
    <Appenders>
        <Console name="SysOut" target="SYSTEM_OUT">
            <RegexFilter regex="^(Error executing task|Unable to play unknown soundEvent|Item entity d+ has no item?!).*" onMatch="DENY" onMismatch="NEUTRAL"/>
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %msg%n" />
        </Console>
        <RollingRandomAccessFile name="File" fileName="logs/latest.log" filePattern="logs/%d{yyyy-MM-dd}-%i.log.gz">
            <RegexFilter regex="^(Error executing task|Unable to play unknown soundEvent|Item entity d+ has no item?!).*" onMatch="DENY" onMismatch="NEUTRAL"/>
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %msg%n" />
            <Policies>
                <TimeBasedTriggeringPolicy />
                <OnStartupTriggeringPolicy />
            </Policies>
        </RollingRandomAccessFile>
    </Appenders>
    <Loggers>
        <Root level="info">
            <filters>
                <MarkerFilter marker="NETWORK_PACKETS" onMatch="DENY" onMismatch="NEUTRAL" />
            </filters>
            <AppenderRef ref="SysOut"/>
            <AppenderRef ref="File"/>
        </Root>
    </Loggers>
</Configuration>

Click here to view the XML files on Gist

Step 3


    • Open the Minecraft launcher and select the profile you want to use.
    • Click on ‘Edit Profile’.
    • If you haven’t already, tick the box ‘JVM Arguments’.
    • Paste the following flag at the end:
      Forge:
      -Dlog4j.configurationFile=config/log4j2-spamfix-forge.xml
      Vanilla:
      -Dlog4j.configurationFile=config/log4j2-spamfix-vanilla.xml
    • Click on ‘Save Profile’ and enjoy!

I have been trying to find a fix for this for months now, and finally got it working today.
Hope this helps someone.

Happy debugging!
I put way too much effort into this. Seriously.

OMG, I love you. Will this work with my running MultiMC as my launcher??

Semx11


  • #5

OMG, I love you. Will this work with my running MultiMC as my launcher??

Yep, that should work as long as you put the flag in there.

iChopYouDrop


  • #6

i wish i knew what this means

Semx11


  • #7

i wish i knew what this means

It removes unnecessary spam from the console (game output). You can see the game output if you choose the option «Always keep launcher open» in a profile (Launcher visibility). If you follow the three relatively easy steps, you will no longer have unnecessary spam, and can read the game output again :)

iChopYouDrop


  • #8

It removes unnecessary spam from the console (game output). You can see the game output if you choose the option «Always keep launcher open» in a profile (Launcher visibility). If you follow the three relatively easy steps, you will no longer have unnecessary spam, and can read the game output again :)

chat logs?

CoalOres


  • #9

If you play on Hypixel with Minecraft 1.8 — 1.8.9, your console output most likely looks something like this:

841d4cac5d0f7e0b11dc26380fa24c66.gif

This can be extremely annoying when you try to read console output/debug something.

This fix removes the following messages:
— Error executing task: <stacktrace>

— Item <number> has no entity!?
— Unable to play unknown soundEvent: <sound>

This fix is for both Forge and Vanilla Minecraft.

Minecraft uses Apache’s Log4j 2. This is a Java library for logging and has a lot of options that can be modified using configuration files.

I added a regex filter to Minecraft’s Log4j configuration files in order to suppress these messages.


Notes:
— It will suppress all ‘Error executing task’ stacktraces thrown by net.minecraft.util.Util.runTask().
— It will also remove these messages from the log files (logs/latest.log)
— It will not remove any chat messages containing these words.
— Feel free to alter the XML file to fit your needs. I don’t need credit!

Note: The Forge console does not work with the new launcher.
This fix only works properly with the old launcher, as you can specify JVM arguments per profile.
Get the old launcher here: https://minecraft.net/en-us/download/alternative (second option)

You only have to follow the steps for the versions you will use (Forge and/or Vanilla).

How to fix


Step 1
Navigate to .minecraft/config and create the following XML file(s):
— log4j2-spamfix-forge.xml
— log4j2-spamfix-vanilla.xml

Step 2

Forge: open log4j2-spamfix-forge.xml and paste in the following XML:

Code:

<?xml version="1.0" encoding="UTF-8"?>
<!-- Author: Mojang/FML, Modified by Semx11 -->
<Configuration status="WARN" packages="com.mojang.util">
    <Appenders>
        <Console name="FmlSysOut" target="SYSTEM_OUT">
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger]: %msg%n" />
        </Console>
        <Console name="SysOut" target="SYSTEM_OUT">
            <RegexFilter regex="^(Error executing task|Unable to play unknown soundEvent|Item entity d+ has no item?!).*" onMatch="DENY" onMismatch="NEUTRAL"/>
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %msg%n" />
        </Console>
        <Queue name="ServerGuiConsole">
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger]: %msg%n" />
        </Queue>
        <RollingRandomAccessFile name="File" fileName="logs/latest.log" filePattern="logs/%d{yyyy-MM-dd}-%i.log.gz">
            <RegexFilter regex="^(Error executing task|Unable to play unknown soundEvent|Item entity d+ has no item?!).*" onMatch="DENY" onMismatch="NEUTRAL"/>
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %msg%n" />
            <Policies>
                <TimeBasedTriggeringPolicy />
                <OnStartupTriggeringPolicy />
            </Policies>
        </RollingRandomAccessFile>
        <Routing name="FmlFile">
            <Routes pattern="$${ctx:side}">
                <Route>
                    <RollingRandomAccessFile name="FmlFile" fileName="logs/fml-${ctx:side}-latest.log" filePattern="logs/fml-${ctx:side}-%i.log">
                        <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger/%X{mod}]: %msg%n" />
                        <DefaultRolloverStrategy max="3" fileIndex="max" />
                        <Policies>
                            <OnStartupTriggeringPolicy />
                        </Policies>
                    </RollingRandomAccessFile>
                </Route>
                <Route key="$${ctx:side}">
                    <RandomAccessFile name="FmlFile" fileName="logs/fml-junk-earlystartup.log" >
                        <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger]: %msg%n" />
                    </RandomAccessFile>
                </Route>
            </Routes>
        </Routing>
    </Appenders>
    <Loggers>
        <Logger level="info" name="com.mojang" additivity="false">
            <AppenderRef ref="SysOut" level="INFO" />
            <AppenderRef ref="File" />
            <AppenderRef ref="ServerGuiConsole" level="INFO" />
        </Logger>
        <Logger level="info" name="net.minecraft" additivity="false">
            <filters>
                <MarkerFilter marker="NETWORK_PACKETS" onMatch="DENY" onMismatch="NEUTRAL" />
            </filters>
            <AppenderRef ref="SysOut" level="INFO" />
            <AppenderRef ref="File" />
            <AppenderRef ref="ServerGuiConsole" level="INFO" />
        </Logger>
        <Root level="all">
            <AppenderRef ref="FmlSysOut" level="INFO" />
            <AppenderRef ref="ServerGuiConsole" level="INFO" />
            <AppenderRef ref="FmlFile"/>
        </Root>
    </Loggers>
</Configuration>

Vanilla: open log4j2-spamfix-vanilla.xml and paste in the following XML:

Code:

<?xml version="1.0" encoding="UTF-8"?>
<!-- Author: Mojang, Modified by Semx11 -->
<Configuration status="WARN">
    <Appenders>
        <Console name="SysOut" target="SYSTEM_OUT">
            <RegexFilter regex="^(Error executing task|Unable to play unknown soundEvent|Item entity d+ has no item?!).*" onMatch="DENY" onMismatch="NEUTRAL"/>
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %msg%n" />
        </Console>
        <RollingRandomAccessFile name="File" fileName="logs/latest.log" filePattern="logs/%d{yyyy-MM-dd}-%i.log.gz">
            <RegexFilter regex="^(Error executing task|Unable to play unknown soundEvent|Item entity d+ has no item?!).*" onMatch="DENY" onMismatch="NEUTRAL"/>
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %msg%n" />
            <Policies>
                <TimeBasedTriggeringPolicy />
                <OnStartupTriggeringPolicy />
            </Policies>
        </RollingRandomAccessFile>
    </Appenders>
    <Loggers>
        <Root level="info">
            <filters>
                <MarkerFilter marker="NETWORK_PACKETS" onMatch="DENY" onMismatch="NEUTRAL" />
            </filters>
            <AppenderRef ref="SysOut"/>
            <AppenderRef ref="File"/>
        </Root>
    </Loggers>
</Configuration>

Click here to view the XML files on Gist

Step 3


    • Open the Minecraft launcher and select the profile you want to use.
    • Click on ‘Edit Profile’.
    • If you haven’t already, tick the box ‘JVM Arguments’.
    • Paste the following flag at the end:
      Forge:
      -Dlog4j.configurationFile=config/log4j2-spamfix-forge.xml
      Vanilla:
      -Dlog4j.configurationFile=config/log4j2-spamfix-vanilla.xml
    • Click on ‘Save Profile’ and enjoy!

I have been trying to find a fix for this for months now, and finally got it working today.
Hope this helps someone.

Happy debugging!
I put way too much effort into this. Seriously.

Very annoying issue, this was a genius idea, thank you very much.

boomboompower


  • #10

If you play on Hypixel with Minecraft 1.8 — 1.8.9, your console output most likely looks something like this:

841d4cac5d0f7e0b11dc26380fa24c66.gif

This can be extremely annoying when you try to read console output/debug something.

This fix removes the following messages:
— Error executing task: <stacktrace>

— Item <number> has no entity!?
— Unable to play unknown soundEvent: <sound>

This fix is for both Forge and Vanilla Minecraft.

Minecraft uses Apache’s Log4j 2. This is a Java library for logging and has a lot of options that can be modified using configuration files.

I added a regex filter to Minecraft’s Log4j configuration files in order to suppress these messages.


Notes:
— It will suppress all ‘Error executing task’ stacktraces thrown by net.minecraft.util.Util.runTask().
— It will also remove these messages from the log files (logs/latest.log)
— It will not remove any chat messages containing these words.
— Feel free to alter the XML file to fit your needs. I don’t need credit!

Note: The Forge console does not work with the new launcher.
This fix only works properly with the old launcher, as you can specify JVM arguments per profile.
Get the old launcher here: https://minecraft.net/en-us/download/alternative (second option)

You only have to follow the steps for the versions you will use (Forge and/or Vanilla).

How to fix


Step 1
Navigate to .minecraft/config and create the following XML file(s):
— log4j2-spamfix-forge.xml
— log4j2-spamfix-vanilla.xml

Step 2

Forge: open log4j2-spamfix-forge.xml and paste in the following XML:

Code:

<?xml version="1.0" encoding="UTF-8"?>
<!-- Author: Mojang/FML, Modified by Semx11 -->
<Configuration status="WARN" packages="com.mojang.util">
    <Appenders>
        <Console name="FmlSysOut" target="SYSTEM_OUT">
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger]: %msg%n" />
        </Console>
        <Console name="SysOut" target="SYSTEM_OUT">
            <RegexFilter regex="^(Error executing task|Unable to play unknown soundEvent|Item entity d+ has no item?!).*" onMatch="DENY" onMismatch="NEUTRAL"/>
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %msg%n" />
        </Console>
        <Queue name="ServerGuiConsole">
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger]: %msg%n" />
        </Queue>
        <RollingRandomAccessFile name="File" fileName="logs/latest.log" filePattern="logs/%d{yyyy-MM-dd}-%i.log.gz">
            <RegexFilter regex="^(Error executing task|Unable to play unknown soundEvent|Item entity d+ has no item?!).*" onMatch="DENY" onMismatch="NEUTRAL"/>
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %msg%n" />
            <Policies>
                <TimeBasedTriggeringPolicy />
                <OnStartupTriggeringPolicy />
            </Policies>
        </RollingRandomAccessFile>
        <Routing name="FmlFile">
            <Routes pattern="$${ctx:side}">
                <Route>
                    <RollingRandomAccessFile name="FmlFile" fileName="logs/fml-${ctx:side}-latest.log" filePattern="logs/fml-${ctx:side}-%i.log">
                        <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger/%X{mod}]: %msg%n" />
                        <DefaultRolloverStrategy max="3" fileIndex="max" />
                        <Policies>
                            <OnStartupTriggeringPolicy />
                        </Policies>
                    </RollingRandomAccessFile>
                </Route>
                <Route key="$${ctx:side}">
                    <RandomAccessFile name="FmlFile" fileName="logs/fml-junk-earlystartup.log" >
                        <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger]: %msg%n" />
                    </RandomAccessFile>
                </Route>
            </Routes>
        </Routing>
    </Appenders>
    <Loggers>
        <Logger level="info" name="com.mojang" additivity="false">
            <AppenderRef ref="SysOut" level="INFO" />
            <AppenderRef ref="File" />
            <AppenderRef ref="ServerGuiConsole" level="INFO" />
        </Logger>
        <Logger level="info" name="net.minecraft" additivity="false">
            <filters>
                <MarkerFilter marker="NETWORK_PACKETS" onMatch="DENY" onMismatch="NEUTRAL" />
            </filters>
            <AppenderRef ref="SysOut" level="INFO" />
            <AppenderRef ref="File" />
            <AppenderRef ref="ServerGuiConsole" level="INFO" />
        </Logger>
        <Root level="all">
            <AppenderRef ref="FmlSysOut" level="INFO" />
            <AppenderRef ref="ServerGuiConsole" level="INFO" />
            <AppenderRef ref="FmlFile"/>
        </Root>
    </Loggers>
</Configuration>

Vanilla: open log4j2-spamfix-vanilla.xml and paste in the following XML:

Code:

<?xml version="1.0" encoding="UTF-8"?>
<!-- Author: Mojang, Modified by Semx11 -->
<Configuration status="WARN">
    <Appenders>
        <Console name="SysOut" target="SYSTEM_OUT">
            <RegexFilter regex="^(Error executing task|Unable to play unknown soundEvent|Item entity d+ has no item?!).*" onMatch="DENY" onMismatch="NEUTRAL"/>
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %msg%n" />
        </Console>
        <RollingRandomAccessFile name="File" fileName="logs/latest.log" filePattern="logs/%d{yyyy-MM-dd}-%i.log.gz">
            <RegexFilter regex="^(Error executing task|Unable to play unknown soundEvent|Item entity d+ has no item?!).*" onMatch="DENY" onMismatch="NEUTRAL"/>
            <PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %msg%n" />
            <Policies>
                <TimeBasedTriggeringPolicy />
                <OnStartupTriggeringPolicy />
            </Policies>
        </RollingRandomAccessFile>
    </Appenders>
    <Loggers>
        <Root level="info">
            <filters>
                <MarkerFilter marker="NETWORK_PACKETS" onMatch="DENY" onMismatch="NEUTRAL" />
            </filters>
            <AppenderRef ref="SysOut"/>
            <AppenderRef ref="File"/>
        </Root>
    </Loggers>
</Configuration>

Click here to view the XML files on Gist

Step 3


    • Open the Minecraft launcher and select the profile you want to use.
    • Click on ‘Edit Profile’.
    • If you haven’t already, tick the box ‘JVM Arguments’.
    • Paste the following flag at the end:
      Forge:
      -Dlog4j.configurationFile=config/log4j2-spamfix-forge.xml
      Vanilla:
      -Dlog4j.configurationFile=config/log4j2-spamfix-vanilla.xml
    • Click on ‘Save Profile’ and enjoy!

I have been trying to find a fix for this for months now, and finally got it working today.
Hope this helps someone.

Happy debugging!
I put way too much effort into this. Seriously.

Love this, would be nice to know why we get those errors. Most likely from one of hypixel’s packets

Semx11


  • #11

Love this, would be nice to know why we get those errors. Most likely from one of hypixel’s packets

Code:

[17:16:25] [Client thread/FATAL]: Error executing task
java.util.concurrent.ExecutionException: java.lang.ArrayIndexOutOfBoundsException: 4353
    at java.util.concurrent.FutureTask.report(Unknown Source) ~[?:1.8.0_111]
    at java.util.concurrent.FutureTask.get(Unknown Source) ~[?:1.8.0_111]
    at net.minecraft.util.Util.runTask(Util.java:23) [Util.class:?]
    at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1070) [Minecraft.class:?]
    at net.minecraft.client.Minecraft.run(Minecraft.java:380) [Minecraft.class:?]
    at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_111]
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_111]
    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
    at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: java.lang.ArrayIndexOutOfBoundsException: 4353
    at net.minecraft.world.chunk.Chunk.fillChunk(Chunk.java:1315) ~[Chunk.class:?]
    at net.minecraft.client.network.NetHandlerPlayClient.handleChunkData(NetHandlerPlayClient.java:757) ~[NetHandlerPlayClient.class:?]
    at net.minecraft.network.play.server.S21PacketChunkData.processPacket(S21PacketChunkData.java:63) ~[S21PacketChunkData.class:?]
    at net.minecraft.network.play.server.S21PacketChunkData.processPacket(S21PacketChunkData.java:14) ~[S21PacketChunkData.class:?]
    at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:15) ~[PacketThreadUtil$1.class:?]
    at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) ~[?:1.8.0_111]
    at java.util.concurrent.FutureTask.run(Unknown Source) ~[?:1.8.0_111]
    at net.minecraft.util.Util.runTask(Util.java:22) ~[Util.class:?]
    ... 15 more

You are correct. As you can see it throws the ArrayIndexOutOfBoundsException at Chunk#fillChunk. People have speculated about it (saving bandwidth, crashing world downloaders, etc) but we don’t know the real reason.
The error ‘unknown soundEvent’ is likely caused by the multi-version compatibility, it sends 1.9 sounds to 1.8 clients. This could probably be fixed, but there are only a few players who have their console open anyway.
The ‘Item … has no entity?!’ is probably along those lines as well.

Again, these are speculations.

Resolved


  • Search


    • Search all Forums


    • Search this Forum


    • Search this Thread


  • Tools


    • Jump to Forum


  • #1

    Jan 22, 2019


    AlansS53


    • View User Profile


    • View Posts


    • Send Message



    View AlansS53's Profile

    • Out of the Water
    • Join Date:


      4/22/2018

    • Posts:

      7
    • Member Details

    Hello, in the last days my server receives an error that spans countless
    times per second, unleashing more errors in just a few minutes.
    Plugis lost player data, sometimes server crash and what’s worse can not save chunks, which makes my
    players lose all their progress.
    If someone knows that this error could be due, I would greatly appreciate your help …

    Error:
    [05:58:21] [Server thread/FATAL]: Error executing task
    java.util.concurrent.ExecutionException: java.lang.ArrayIndexOutOfBoundsException
    at java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?:1.8.0_191]
    at java.util.concurrent.FutureTask.get(FutureTask.java:192) ~[?:1.8.0_191]
    at net.minecraft.server.v1_8_R3.SystemUtils.a(SourceFile:45) [spigot.1.8.8.jar:git-Spigot-db6de12-18fbb24]
    at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:715) [spigot.1.8.8.jar:git-Spigot-db6de12-18fbb24]
    at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374) [spigot.1.8.8.jar:git-Spigot-db6de12-18fbb24]
    at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654) [spigot.1.8.8.jar:git-Spigot-db6de12-18fbb24]
    at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557) [spigot.1.8.8.jar:git-Spigot-db6de12-18fbb24]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_191]

    Other errors:

    https://pastebin.com/HY5Qv51J


  • #2

    Jan 22, 2019

    [p]Have you tried doing this?[/p]

    [*]
    [06:02:32] [Server thread/ERROR]: Couldn’t save chunk; already in use by another instance of Minecraft?

    [*]
    net.minecraft.server.v1_8_R3.ExceptionWorldConflict: Failed to check session lock for world located at ./MundoRecurso, aborting. Stop the server and delete the session.lock in this world to prevent further issues.

    [/numlist]
    [p]As stated in the log?[/p]
    List tags are malformed.

    Proud Owner of DivineNetworks! An epic community with epic people such as you!

    Website: Coming Soon!

    Discord: Click Here


  • #4

    Jan 23, 2019

    Hi, I do not understand what you mean, excuse my ignorance…

    Sorry, I should have explained it better.

    In your server files there should be a file called «session.lock». Stop your server then delete that file. the restart and see if its fixed.

    And it might help if you get Mcedit Located here —-> http://www.mcedit.net/ Load up your server World then click «Fix Regions» as it will fix any corrupt chunks.

    The Session.lock file should be located in the root directory of the server.

    Proud Owner of DivineNetworks! An epic community with epic people such as you!

    Website: Coming Soon!

    Discord: Click Here


  • #6

    Jan 25, 2019

    if you used mcedit? No it shouldn’t be. Make a copy just in case but mcedit should fix your problem

    Proud Owner of DivineNetworks! An epic community with epic people such as you!

    Website: Coming Soon!

    Discord: Click Here


  • #7

    Jan 29, 2019


    AlansS53


    • View User Profile


    • View Posts


    • Send Message



    View AlansS53's Profile

    • Out of the Water
    • Join Date:

      4/22/2018
    • Posts:

      7
    • Member Details

    Hello, thank you very much for your help, I decided to eliminate the world and it seems that the problem is solved. A greeting!


  • #8

    Jan 29, 2019

    Hello, thank you very much for your help, I decided to eliminate the world and it seems that the problem is solved. A greeting!

    Awesome glad to hear it :)

    Proud Owner of DivineNetworks! An epic community with epic people such as you!

    Website: Coming Soon!

    Discord: Click Here

  • To post a comment, please login.

Posts Quoted:

Reply

Clear All Quotes


Содержание

  1. Execution Exception, Assertion Error on ItemStack.setAmount() to 0 or removeItem
  2. Details
  3. Description
  4. Error executing task #31
  5. Comments
  6. Minecraft Forums
  7. I need help
  8. Fatal error in 7.1.6 recommended build #2803
  9. Comments
  10. java.util.concurrent.ExecutionException: java.lang.NullPointerException #2464
  11. Comments

Execution Exception, Assertion Error on ItemStack.setAmount() to 0 or removeItem

Details

Runing spigot 1.11.2 (latest build offered by the BuildTools at this time), running the server on a windows 7 pc, running Java 8.

Description

So I am developping a plugin using Spigot’s api obviously and while I was trying to remove and Item after it being used i run over this exception
———————————————————————————
[Server thread/FATAL] : Error executing task
java.util.concurrent.ExecutionException: java.lang.AssertionError: TRAP
at java.util.concurrent.FutureTask.report(Unknown Source)

[?:1.8.0_111]
at java.util.concurrent.FutureTask.get(Unknown Source)

[?:1.8.0_111]
at net.minecraft.server.v1_11_R1.SystemUtils.a(SourceFile:47) [spigot.jar:git-Spigot-7d78b81-e2a288c]
at net.minecraft.server.v1_11_R1.MinecraftServer.D(MinecraftServer.java:739) [spigot.jar:git-Spigot-7d78b81-e2a288c]
at net.minecraft.server.v1_11_R1.DedicatedServer.D(DedicatedServer.java:399) [spigot.jar:git-Spigot-7d78b81-e2a288c]
at net.minecraft.server.v1_11_R1.MinecraftServer.C(MinecraftServer.java:675) [spigot.jar:git-Spigot-7d78b81-e2a288c]
at net.minecraft.server.v1_11_R1.MinecraftServer.run(MinecraftServer.java:574) [spigot.jar:git-Spigot-7d78b81-e2a288c]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_111]
Caused by: java.lang.AssertionError: TRAP
at net.minecraft.server.v1_11_R1.ItemStack.F(ItemStack.java:86)

[spigot.jar:git-Spigot-7d78b81-e2a288c]
at net.minecraft.server.v1_11_R1.ItemStack.setCount(ItemStack.java:814)

[spigot.jar:git-Spigot-7d78b81-e2a288c]
at net.minecraft.server.v1_11_R1.PlayerInteractManager.a(PlayerInteractManager.java:403)

[spigot.jar:git-Spigot-7d78b81-e2a288c]
at net.minecraft.server.v1_11_R1.PlayerConnection.a(PlayerConnection.java:957)

[spigot.jar:git-Spigot-7d78b81-e2a288c]
at net.minecraft.server.v1_11_R1.PacketPlayInBlockPlace.a(PacketPlayInBlockPlace.java:26)

[spigot.jar:git-Spigot-7d78b81-e2a288c]
at net.minecraft.server.v1_11_R1.PacketPlayInBlockPlace.a(PacketPlayInBlockPlace.java:1)

[spigot.jar:git-Spigot-7d78b81-e2a288c]
at net.minecraft.server.v1_11_R1.PlayerConnectionUtils$1.run(SourceFile:13)

[spigot.jar:git-Spigot-7d78b81-e2a288c]
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)

[?:1.8.0_111]
at java.util.concurrent.FutureTask.run(Unknown Source)

[?:1.8.0_111]
at net.minecraft.server.v1_11_R1.SystemUtils.a(SourceFile:46)

It happens after all the things are done, and everything in my code executes sucessfully, so I am guessing it is coming from the API. I am currently running the latest build offered by the BuildTools. Hope it can helps you if it really coming from Spigot, keep up the good work! If you want more details or have any questions feel free to ask!

Источник

Error executing task #31

I’m not sure if I should post this here, or over at the code chicken GitHub so I’m posting at both since it mentions both mods. I’m getting this constantly in my log.

[?:1.8.0_131] > at java.util.concurrent.FutureTask.get(FutureTask.java:192)

[?:1.8.0_131] > at net.minecraft.util.Util.func_181617_a(SourceFile:47) [h.class:?] > at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:723) [MinecraftServer.class:?] > at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:396) [nz.class:?] > at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:668) [MinecraftServer.class:?] > at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526) [MinecraftServer.class:?] > at java.lang.Thread.run(Thread.java:748) [?:1.8.0_131] > Caused by: java.util.NoSuchElementException: key not found: 1 > at scala.collection.MapLike$class.default(MapLike.scala:228)

[MapLike$class.class:?] > at scala.collection.AbstractMap.default(Map.scala:59)

[AbstractMap.class:?] > at scala.collection.mutable.HashMap.apply(HashMap.scala:65)

[HashMap.class:?] > at mrtjp.core.data.KeyTracking$.updatePlayerKey(KeyTracking.scala:28)

[KeyTracking$.class:?] > at mrtjp.core.handler.MrTJPCoreSPH$.handlePacket(packethandlers.scala:64)

[MrTJPCoreSPH$.class:?] > at codechicken.lib.packet.PacketCustom$ServerInboundHandler.handle(PacketCustom.java:135)

[PacketCustom$ServerInboundHandler.class:?] > at codechicken.lib.packet.PacketCustom$ServerInboundHandler.lambda$handle$0(PacketCustom.java:133)

[PacketCustom$ServerInboundHandler.class:?] > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)

[?:1.8.0_131] > at java.util.concurrent.FutureTask.run(FutureTask.java:266)

[?:1.8.0_131] > at net.minecraft.util.Util.func_181617_a(SourceFile:46)

[h.class:?] > . 5 more»>

The text was updated successfully, but these errors were encountered:

Источник

Minecraft Forums

I need help

I load into a server then crash every single time, I get fatal errors from launch report thing.

  • Out of the Water
  • Join Date: 1/13/2019
  • Posts: 7
  • Member Details

  • Enderdragon Slayer
  • Join Date: 11/20/2012
  • Posts: 14,806
  • Member Details

Post the entire log, use paste.ubuntu.com.

  • Out of the Water
  • Join Date: 1/13/2019
  • Posts: 7
  • Member Details

don’t know if that’s what you wanted let me know

  • Out of the Water
  • Join Date: 1/13/2019
  • Posts: 7
  • Member Details

  • Enderdragon Slayer
  • Join Date: 11/20/2012
  • Posts: 14,806
  • Member Details

An error report file with more information is saved as:

Источник

Fatal error in 7.1.6 recommended build #2803

  • SpongeForge version: 1.12.2-2825-7.1.6
  • Forge version: 1.12.2 — 14.23.5.2838
  • Java version: Version 8 Update 211 build 1.8.0_211-b12
  • Operating System: Windows Server 2012 x64

The text was updated successfully, but these errors were encountered:

Going to need a bit more information — specifically the stack trace below Caused by: java.lang.NullPointerException . If you have the full debug.log , that would help.

Going to need a bit more information — specifically the stack trace below Caused by: java.lang.NullPointerException . If you have the full debug.log , that would help.

It looks like something is swallowing the NPE trace. This is outside of Sponge’s code at this point.

Try the following to triage:

  • Pull SF from your server and see if it still happens
  • If it does not happen then re-add SF and remove mods 1 by 1 until we can find who is in-compatible
  • If it does happen then remove SF and remove mods 1 by 1 until we can find who is causing it.

Unless someone else has encountered this and knows who is at fault.

I updated the Mekanism mod and then found this error.

It looks like something is swallowing the NPE trace. This is outside of Sponge’s code at this point.

Try the following to triage:

  • Pull SF from your server and see if it still happens
  • If it does not happen then re-add SF and remove mods 1 by 1 until we can find who is in-compatible
  • If it does happen then remove SF and remove mods 1 by 1 until we can find who is causing it.

Unless someone else has encountered this and knows who is at fault.

I updated the Mekanism mod and then found this error. Today I have problem with ImmersiveEngineering mod. i created report in his repository BluSunrize/ImmersiveEngineering#3484

Mekanism devolpmers say:

Unless you can get a proper stack trace from it, there’s nothing we can do. IMO not even enough to pin it on Mekanism, even if it was the only mod you updated.

It’s quite odd that the caused by trace has no stacktrace attached. Definitely not caused by us.

My English is bad and very difficult to communicate.
mekanism/Mekanism#5504

@mistek131995 Then you’ll need to do triage based on the steps I gave above and come back when you know more.

I’ve posted on their issue page, a relavant stacktrace was towards the top of the debug log. It seems to me that they are trying to put a null into a EnumMap — but it’s unclear where that null came from and could be symptomatic of something else see #2802 (comment) as to when this could be null .

@mistek131995 I advise you still do what @Zidane suggests, because we can then determine if something is going wrong on our end too. In particular, try removing SpongeForge and try again, do you still get these traces?

Я разместил на странице их проблемы соответствующую трассировку стека в верхней части журнала отладки. Мне кажется , что они пытаются положить null в EnumMap — но непонятно , откуда что null пришли и может быть симптомом чего — то другого.

@ mistek131995 Я советую вам по-прежнему делать то, что предлагает @Zidane , потому что тогда мы можем определить, идет ли что-то не так и с нашей стороны. В частности, попробуйте удалить SpongeForge и попробуйте еще раз, вы все еще получаете эти следы?

I setup old mod and SpongeForge version and watching the console. Now there are no errors.

Closing as the Mekanism devs have been alerted to a stack of the issue and I believe will be pushing a fix on their ends.

Источник

java.util.concurrent.ExecutionException: java.lang.NullPointerException #2464

I am currently running

  • SpongeForge version: 3472
  • Forge version: 2705
  • Java version: 1,8
  • Operating System: Ubuntu 16.04

java.util.concurrent.ExecutionException: java.lang.NullPointerException
at java.util.concurrent.FutureTask.report(FutureTask.java:122)

[?:1.8.0_181]
at java.util.concurrent.FutureTask.get(FutureTask.java:192)

[?:1.8.0_181]
at net.minecraft.util.Util.func_181617_a(SourceFile:47) [h.class:?]
at org.spongepowered.common.SpongeImplHooks.onUtilRunTask(SpongeImplHooks.java:294) [SpongeImplHooks.class:1.12.2-2705-7.1.0-BETA-3472
at net.minecraft.server.MinecraftServer.redirect$onRun$zjk000(MinecraftServer.java:3970) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:723) [MinecraftServer.class:?]
at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:396) [nz.class:?]
at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:668) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526) [MinecraftServer.class:?]
at java.lang.Thread.run(Thread.java:748) [?:1.8.0_181]
Caused by: java.lang.NullPointerException
at com.ebkr.expansiveenergy.items.ItemExpansiveWrench.func_180614_a(ItemExpansiveWrench.java:34)

[ItemExpansiveWrench.class:?]
at net.minecraft.item.ItemStack.func_179546_a(ItemStack.java:2965)

[aip.class:?]
at net.minecraft.server.management.PlayerInteractionManager.func_187251_a(PlayerInteractionManager.java:1326)

[or.class:?]
at net.minecraft.network.NetHandlerPlayServer.redirect$onProcessRightClickBlock$zio000(NetHandlerPlayServer.java:2415)

[pa.class:?]
at net.minecraft.network.NetHandlerPlayServer.func_184337_a(NetHandlerPlayServer.java:739)

[pa.class:?] ehind, skipping 47 ti
at net.minecraft.network.play.client.CPacketPlayerTryUseItemOnBlock.func_148833_a(SourceFile:55)

[ma.class:?]
at net.minecraft.network.play.client.CPacketPlayerTryUseItemOnBlock.func_148833_a(SourceFile:11)

[ma.class:?]
at org.spongepowered.common.event.tracking.phase.packet.PacketPhaseUtil.onProcessPacket(PacketPhaseUtil.java:193)

[PacketPhaseUtil.cl
at net.minecraft.network.PacketThreadUtil$1.redirect$onProcessPacket$zlg000(SourceFile:539)

[hv$1.class:?]
at net.minecraft.network.PacketThreadUtil$1.run(SourceFile:13)

[hv$1.class:?]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)

[?:1.8.0_181]
at java.util.concurrent.FutureTask.run(FutureTask.java:266)

[?:1.8.0_181]
at net.minecraft.util.Util.func_181617_a(SourceFile:46)

The text was updated successfully, but these errors were encountered:

Источник

Thread Status:

Not open for further replies.
  1. Hey guys,

    I got a problem with my Craftbukkit-Server 1.9 ! Everything works fine using multicraft, except this:


    Console (open)
    Console (close)

    03.03 16:28:04 [Server] FATAL Error executing task
    03.03 16:28:04 [Server] INFO java.util.concurrent.ExecutionException: java.lang.ArrayIndexOutOfBoundsException
    03.03 16:28:04 [Server] INFO at java.util.concurrent.FutureTask.report(Unknown Source) ~[?:1.8.0_65]
    03.03 16:28:04 [Server] INFO at java.util.concurrent.FutureTask.get(Unknown Source) ~[?:1.8.0_65]
    03.03 16:28:04 [Server] INFO at net.minecraft.server.v1_9_R1.SystemUtils.a(SourceFile:46) [craftbukkit_server.jar:git-Bukkit-c194444]
    03.03 16:28:04 [Server] INFO at net.minecraft.server.v1_9_R1.MinecraftServer.D(MinecraftServer.java:674) [craftbukkit_server.jar:git-Bukkit-c194444]
    03.03 16:28:04 [Server] INFO at net.minecraft.server.v1_9_R1.DedicatedServer.D(DedicatedServer.java:361) [craftbukkit_server.jar:git-Bukkit-c194444]
    03.03 16:28:04 [Server] INFO at net.minecraft.server.v1_9_R1.MinecraftServer.C(MinecraftServer.java:630) [craftbukkit_server.jar:git-Bukkit-c194444]
    03.03 16:28:04 [Server] INFO at net.minecraft.server.v1_9_R1.MinecraftServer.run(MinecraftServer.java:534) [craftbukkit_server.jar:git-Bukkit-c194444]
    03.03 16:28:04 [Server] INFO at java.lang.Thread.run(Unknown Source) [?:1.8.0_65]
    03.03 16:28:04 [Server] INFO Caused by: java.lang.ArrayIndexOutOfBoundsException

    The server is not shutting down, still running, but time by time I got this FATAL Error and dont know why :/

    DONE, just dont use Multicraft ! ;)

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.

    Last edited by a moderator: Mar 3, 2016

  2. I have the same problem with spigot 1.9.
    The error hapend wen i try to right clic a PNJ. Of curs right clic don’t work.
    Thank for helping.

Thread Status:

Not open for further replies.

Share This Page


Bukkit Forums

Понравилась статья? Поделить с друзьями:
  • Error executing task on client java lang nullpointerexception null
  • Error executing task on chunk source main thread executor for minecraft overworld
  • Error executing task java util concurrent executionexception java lang assertionerror trap
  • Error executing sql statement
  • Error executing sql script