Error executing task java util concurrent executionexception java lang assertionerror trap

Народ, почему-то вылезает это исключение, хотя весь функционал плагина работает. Помогите: [SPOILER] Исключение: [17:33:11 FATAL]: Error executing...
  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

Содержание

  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:

Источник

I am writing a class for Spigot, that defines a lot of new crafting recipes. However, it seems that when I call an event, it sometime throws a Assertion Error: TRAP.
I have researched a lot, and find no useful tips, or anything.

Items.java

package com.myththewolf.omnomnom.lib;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;

import org.bukkit.Bukkit;
import org.bukkit.Material;
import org.bukkit.SkullType;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.ShapedRecipe;
import org.bukkit.inventory.meta.ItemMeta;
import org.bukkit.inventory.meta.SkullMeta;

public class Items {
    private static HashMap<ItemStack,Integer> items = new HashMap<ItemStack,Integer>();
    private static List<ShapedRecipe> itemC = new ArrayList<ShapedRecipe>();
    public ItemStack setMeta(ItemStack material, String name, List<String> lore)
    {
        if (((material == null) || material.getType() == Material.AIR) || ((name == null && lore == null)))
        {
            return null;
        }
        ItemMeta im = material.getItemMeta();
        if (name != null)
        {
            im.setDisplayName(name);
        }
        if (lore != null)
        {
            im.setLore(lore);
        }
        material.setItemMeta(im);
        return material;
    }

    public static void makeRecipies()
    {

            ItemStack skull; 
            skull = new ItemStack(Material.SKULL_ITEM, 1, (short) SkullType.PLAYER.ordinal());
            SkullMeta SM; 
            SM = (SkullMeta) skull.getItemMeta();
            SM.setOwner("MHF_CHEST");
            skull.setItemMeta(SM);
        addRecipie(3, "CCC", "BAB", "CCC", skull, Material.COOKED_BEEF, Material.BREAD, Material.AIR);
        for(ShapedRecipe sr : itemC)
        {
            Bukkit.getServer().addRecipe(sr);
        }
    }

    public static HashMap<ItemStack,Integer> getItems()
    {
        return items;
    }

    public static void addRecipie(int hung,String patA, String patB, String patC, ItemStack out, Material a, Material b, Material c)
    {
        ShapedRecipe rec = new ShapedRecipe(out);
        rec.shape(patA,patB,patC);
        rec.setIngredient('A', a);
        rec.setIngredient('B', b);
        rec.setIngredient('C', c);
        items.put(out, hung);
        itemC.add(rec);
    }
}

RightClickEvent.java

package com.myththewolf.omnomnom.event;

import java.util.HashMap;

import org.bukkit.Material;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.block.Action;
import org.bukkit.event.player.PlayerInteractEvent;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.meta.ItemMeta;

import com.myththewolf.omnomnom.lib.Items;

public class RightClickEvent implements Listener {
    @EventHandler

    public void onInteractEvent(PlayerInteractEvent e)
    {
        Action a= e.getAction();


        if(a == Action.RIGHT_CLICK_BLOCK || a==  Action.RIGHT_CLICK_AIR)
        {

            final HashMap<ItemStack,Integer> items = Items.getItems();
            if(items.containsKey(e.getItem()))
            {
                int foodL = e.getPlayer().getFoodLevel();

                e.getPlayer().setFoodLevel(foodL + items.get(e.getItem()));
                ItemStack hand = e.getPlayer().getItemInHand();
                int amount = hand.getAmount();
                if (amount > 1) {
                    hand.setAmount(amount - 1);
                    e.getPlayer().setItemInHand(hand);
                } else {
                    e.getPlayer().setItemInHand(new ItemStack(Material.AIR));
                }
            }
        }
    }
}

Here is the stack trace:

[22:50:18 FATAL]: Error executing task
java.util.concurrent.ExecutionException: java.lang.AssertionError: TRAP
    at java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?:1.8.0_101]
    at java.util.concurrent.FutureTask.get(FutureTask.java:192) ~[?:1.8.0_101]
    at net.minecraft.server.v1_11_R1.SystemUtils.a(SourceFile:47) [spigot.jar:git-Spigot-f950f8e-4f47972]
    at net.minecraft.server.v1_11_R1.MinecraftServer.D(MinecraftServer.java:739) [spigot.jar:git-Spigot-f950f8e-4f47972]
    at net.minecraft.server.v1_11_R1.DedicatedServer.D(DedicatedServer.java:399) [spigot.jar:git-Spigot-f950f8e-4f47972]
    at net.minecraft.server.v1_11_R1.MinecraftServer.C(MinecraftServer.java:675) [spigot.jar:git-Spigot-f950f8e-4f47972]
    at net.minecraft.server.v1_11_R1.MinecraftServer.run(MinecraftServer.java:574) [spigot.jar:git-Spigot-f950f8e-4f47972]
    at java.lang.Thread.run(Thread.java:745) [?:1.8.0_101]
Caused by: java.lang.AssertionError: TRAP
    at net.minecraft.server.v1_11_R1.ItemStack.F(ItemStack.java:86) ~[spigot.jar:git-Spigot-f950f8e-4f47972]
    at net.minecraft.server.v1_11_R1.ItemStack.setCount(ItemStack.java:814) ~[spigot.jar:git-Spigot-f950f8e-4f47972]
    at net.minecraft.server.v1_11_R1.ItemStack.add(ItemStack.java:818) ~[spigot.jar:git-Spigot-f950f8e-4f47972]
    at net.minecraft.server.v1_11_R1.ItemStack.subtract(ItemStack.java:822) ~[spigot.jar:git-Spigot-f950f8e-4f47972]
    at net.minecraft.server.v1_11_R1.ItemSkull.a(ItemSkull.java:79) ~[spigot.jar:git-Spigot-f950f8e-4f47972]
    at net.minecraft.server.v1_11_R1.ItemStack.placeItem(ItemStack.java:152) ~[spigot.jar:git-Spigot-f950f8e-4f47972]
    at net.minecraft.server.v1_11_R1.PlayerInteractManager.a(PlayerInteractManager.java:491) ~[spigot.jar:git-Spigot-f950f8e-4f47972]
    at net.minecraft.server.v1_11_R1.PlayerConnection.a(PlayerConnection.java:897) ~[spigot.jar:git-Spigot-f950f8e-4f47972]
    at net.minecraft.server.v1_11_R1.PacketPlayInUseItem.a(PacketPlayInUseItem.java:37) ~[spigot.jar:git-Spigot-f950f8e-4f47972]
    at net.minecraft.server.v1_11_R1.PacketPlayInUseItem.a(PacketPlayInUseItem.java:1) ~[spigot.jar:git-Spigot-f950f8e-4f47972]
    at net.minecraft.server.v1_11_R1.PlayerConnectionUtils$1.run(SourceFile:13) ~[spigot.jar:git-Spigot-f950f8e-4f47972]
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_101]
    at java.util.concurrent.FutureTask.run(FutureTask.java:266) ~[?:1.8.0_101]
    at net.minecraft.server.v1_11_R1.SystemUtils.a(SourceFile:46) ~[spigot.jar:git-Spigot-f950f8e-4f47972]
    ... 5 more

What exactly IS this error?

Did I do something wrong?

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and
privacy statement. We’ll occasionally send you account related emails.

Already on GitHub?
Sign in
to your account


Open

Greatone123 opened this issue

Jul 15, 2018

· 12 comments

Assignees

@MrTJP

Comments

@Greatone123

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.

MrTJPCore-1.12.2-2.1.3.35-universal
CodeChickenLib-1.12.2-3.2.0.345-universal

> [09:09:43] [Server thread/FATAL] [net.minecraft.server.MinecraftServer]: Error executing task
> java.util.concurrent.ExecutionException: java.util.NoSuchElementException: key not found: 1
> 	at java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?: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

@covers1624

I have no idea how TJ’s key tracking works but it has been rock solid for ages. Ill leave this for TJ to look at.

@Greatone123

Alright, sorry for posting twice, I didn’t actually know you both worked on both mods.

@Greatone123

So far I’ve been able to figure out it doesn’t happen when I’m in the server. Only when the other player (I’ve only got me and her currently) is in the server.

Is there something I can look at in her configs or something to help narrow down the issue?

@ghost

Did you ever figure this out, because I have the same issue?

@Greatone123

I reset the defaults on my keybindings and it stopped. I never took the time to narrow it down, was just happy it stopped.

@ZeldaLinkAaron

I recently had this same problem and I think it was a corrupt download because I re-downloaded both mods and ProjectRed and that fixed it.

@Greatone123

Interesting, I haven’t thought about re-downloading. I haven’t had the issue anymore, but might be worth doing just because.

@ghost

It ended up being a mod mismatch on my end.

@EivindAntonsen

Also ran into this issue now, on first time downloading the mods. I’m using Integration, Lighting, Core, World and Mechanical.

@JanTuck

Being spammed in my console too, any eta or knowhow on how to fix it?

@Shanwer

I also have this problem on my server.

@Shanwer

All right.It turned out to be my problem.I re-install the mods and the problem disappear.

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


  • Search


    • Search all Forums


    • Search this Forum


    • Search this Thread


  • Tools


    • Jump to Forum


  • #1

    Jan 13, 2019

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

    ATTACHMENTS

    • Screenshot (1)

      Screenshot (1)


  • #2

    Jan 13, 2019

    Error executing task
    java.util.concurrent.ExecutionException: java.lang.NullPointerException
    at java.util.concurrent.FutureTask.report(FutureTask.java:122)
    at java.util.concurrent.FutureTask.get(FutureTask.java:192)
    at k.a(SourceFile:200)
    at cft.c(SourceFile:811)
    at cft.a(SourceFile:395)
    at net.minecraft.client.main.Main.main(SourceFile:144)
    Caused by: java.lang.NullPointerException
    at cfc.d(SourceFile:199)
    at crd.a(SourceFile:1809)
    at lo.a(SourceFile:122)
    at lo.a(SourceFile:16)
    at ix.a(SourceFile:10)
    at ix$$Lambda$1075/891051360.run(Unknown Source)
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
    at java.util.concurrent.FutureTask.run(FutureTask.java:266)
    at k.a(SourceFile:199)


  • #4

    Jan 13, 2019

    Notes: fixed paste.ubuntu.com link


  • #5

    Jan 15, 2019

    #
    # A fatal error has been detected by the Java Runtime Environment:
    #
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000003913b6b5, pid=424, tid=2756
    #
    # JRE version: Java(TM) SE Runtime Environment (8.0_51-b16) (build 1.8.0_51-b16)
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.51-b03 mixed mode windows-amd64 compressed oops)
    # Problematic frame:
    # C [ig75icd64.dll+0x6b6b5]
    #
    # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
    #
    # An error report file with more information is saved as:
    # C:UsersChadAppDataRoaming.minecrafths_err_pid424.log
    #
    # If you would like to submit a bug report, please visit:
    # http://bugreport.java.com/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    #
    AL lib: (EE) alc_cleanup: 1 device not closed


  • #6


    Jan 16, 2019


    Tails1


    • View User Profile


    • View Posts


    • Send Message



    View Tails1's Profile

    • Enderdragon Slayer
    • Join Date:

      11/20/2012
    • Posts:

      14,806
    • Member Details

    An error report file with more information is saved as:

    C:UsersChadAppDataRoaming.minecrafths_err_pid424.log

    Again using paste.ubuntu.com please.


  • #11

    Jan 16, 2019

    i don’t see bonjour on that list and VBOs on or off?


  • #12

    Jan 16, 2019


    Tails1


    • View User Profile


    • View Posts


    • Send Message



    View Tails1's Profile

    • Enderdragon Slayer
    • Join Date:

      11/20/2012
    • Posts:

      14,806
    • Member Details

    Remove bonjour regardless, it injects itself into jvm for whatever reason. And toggle means either, so try both.

  • To post a comment, please login.

Posts Quoted:

Reply

Clear All Quotes


Hey all,

Just posting this here to see if anyone else notices it. We just updated our server today and I’ve been noticing these errors in the console log for a while now. Unsure of the cause, thought I’d drop the stack trace in the event anyone else has noticed and/or fixed this.

[01:37:03] [Server thread/FATAL]: Error executing task
java.util.concurrent.ExecutionException: java.lang.NullPointerException
        at java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?:1.8.0_111]
        at java.util.concurrent.FutureTask.get(FutureTask.java:192) ~[?:1.8.0_111]
        at net.minecraft.util.Util.func_181617_a(SourceFile:46) [h.class:?]
        at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:668) [MinecraftServer.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:387) [ld.class:?]
        at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:613) [MinecraftServer.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:471) [MinecraftServer.class:?]
        at java.lang.Thread.run(Thread.java:745) [?:1.8.0_111]
Caused by: java.lang.NullPointerException
        at io.github.drmanganese.topaddons.config.network.MessageClientOptions.lambda$onMessage$7(MessageClientOptions.java:55) ~[MessageClientOptions.class:?]
        at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_111]
        at java.util.concurrent.FutureTask.run(FutureTask.java:266) ~[?:1.8.0_111]
        at net.minecraft.util.Util.func_181617_a(SourceFile:45) ~[h.class:?]
        ... 5 more

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.

Народ! Всем доброго!
Возникла тут необходимость перемещать игрока на определённое место во время возрождение после смерти…
Использую следующий код:

@SubscribeEvent
 public void playerRespawn(PlayerRespawnEvent event) {
   EntityPlayer player = event.player;
   World world = player.worldObj;
   if (world.provider.getDimension() == Mist.dimensionID) {
      BlockPos pos = player.getBedLocation();
      IBlockState state = world.getBlockState(pos); //Строчка 463
      if (!state.getBlock().isBed(state, world, pos, player)) {
         pos = PlayerLocationData.get(world).getSpawnPos(player);
         if (pos != null) {
            player.setSpawnChunk(pos, true, Mist.dimensionID);
            this.movedPlayer.replace(player.getUniqueID(), new Vector4d(pos.getX() + 0.5D, pos.getY(), pos.getZ() + 0.5D, 0.0F));
         }
      }
   }
 }

Однако, при смерти на сервере возрождение происходит очень странным образом.
Игрок как бы появляется (правда не на нужном месте), но ведёт себя как фантом… Визуально стоит на одном месте, хотя на самом деле бегает вокруг. Не способен взаимодействовать с блоками и сущностями…
Попытка перезайти на сервер не даёт результатов… Сервер его не пускает.

При смети игрока выдаётся следующий лог:

[21:36:35] [Server thread/FATAL]: Error executing task
java.util.concurrent.ExecutionException: java.lang.NullPointerException
 at java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?:1.8.0_65]
 at java.util.concurrent.FutureTask.get(FutureTask.java:192) ~[?:1.8.0_65]
 at net.minecraft.util.Util.func_181617_a(SourceFile:46) [h.class:?]
 at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:668) [MinecraftServer.class:?]
 at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:387) [ld.class:?]
 at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:613) [MinecraftServer.class:?]
 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:471) [MinecraftServer.class:?]
 at java.lang.Thread.run(Thread.java:745) [?:1.8.0_65]
Caused by: java.lang.NullPointerException
 at net.minecraft.world.World.func_189509_E(World.java:218) ~[aid.class:?]
 at net.minecraft.world.World.func_180495_p(World.java:836) ~[aid.class:?]
 at ru.liahim.mist.handlers.ServerEventHandler.playerRespawn(ServerEventHandler.java:463) ~[ServerEventHandler.class:?]
 at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_19_ServerEventHandler_playerRespawn_PlayerRespawnEvent.invoke(.dynamic) ~[?:?]
 at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) ~[ASMEventHandler.class:?]
 at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) ~[EventBus.class:?]
 at net.minecraftforge.fml.common.FMLCommonHandler.firePlayerRespawnEvent(FMLCommonHandler.java:575) ~[FMLCommonHandler.class:?]
 at net.minecraft.server.management.PlayerList.func_72368_a(PlayerList.java:578) ~[mp.class:?]
 at net.minecraft.network.NetHandlerPlayServer.func_147342_a(NetHandlerPlayServer.java:1068) ~[me.class:?]
 at net.minecraft.network.play.client.CPacketClientStatus.func_148833_a(SourceFile:31) ~[in.class:?]
 at net.minecraft.network.play.client.CPacketClientStatus.func_148833_a(SourceFile:8) ~[in.class:?]
 at net.minecraft.network.PacketThreadUtil$1.run(SourceFile:13) ~[fl$1.class:?]
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_65]
 at java.util.concurrent.FutureTask.run(FutureTask.java:266) ~[?:1.8.0_65]
 at net.minecraft.util.Util.func_181617_a(SourceFile:45) ~[h.class:?]
 ... 5 more
[21:36:55]

Указывает на строчку 463 моего метода и пишет NullPointerException.
Я так понимаю — это нулевой мир?

Как можно победить сей глюк? Или, возможно, можно как-нибудь иначе выяснить, есть ли на указанной позе кровать или нет?
Или проще проверять мир на ноль? Будет ли в этом случае работать перемещение?

В общем, хелп!

Понравилась статья? Поделить с друзьями:
  • Error executing sql pragma synchronous normal
  • Error executing sql in memberdaoimpljdbc create
  • Error executing sql commit database is locked asterisk
  • Error executing program error code 2
  • Error executing maven unable to load cache item