Jump to content

Could anyone please help with changing the item model at runtime with OverrideProperty?


Recommended Posts

Posted

I am trying to give ItemProperties to my custom item that will allow me to change item model at runtime but I got lost and cant figure anything out and I searched everywhere for nothing please help

{
  "parent": "item/generated",
  "textures": {
    "layer0": "betterenchanting:item/clean_dust"
  },
  "overrides": [
    {
      "predicate": {
        "betterenchanting:used_factor": 1
      },
      "model": "betterenchanting:item/clean_dust_used_1"
    },
    {
      "predicate": {
        "betterenchanting:used_factor": 2
      },
      "model": "betterenchanting:item/clean_dust_used_2"
    }
  ]
}

 

RWROoYvByxB2.png?o=1

E4BEQBSyTLNN.png?o=1

8oSZmINobHMq.png?o=1

 

 

Posted

Basic forum issues:

* Don't post code in the forums, put all relevant code to reproduce the problem on github.

* Don't post text as images

* You don't actually say what your problem is

 

Your code actually does nothing:

* You are not using sidedSuccess: https://forums.minecraftforge.net/search/?q=sidedSuccess&quick=1&type=forums_topic&nodes=70

* Your item property function is hardwired to return 0 so it is pointless

* Even if it did something, It is clamped between 0 and 1, but you have an model for value=2 ?

 

Finally your model has "betterenchanting:used_factor"

But you register it as    "betterenchanting.used.factor" which is actually "minecraft:betterenchanting.used.factor" since you don't specify the namespace,

besides having a _ versus . confusion.

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Posted (edited)

I changed all ResourceLocations to include namespace (I forgot about that, sorry 😅) but I have no idea how to connect ItemModelOverrides in Json file with NBT tag
 

public class CleanDustItem extends Item {
    public CleanDustItem(Properties pProperties) {
        super(pProperties);
    }

    @Override
    public InteractionResultHolder<ItemStack> use(Level pLevel, Player pPlayer, InteractionHand pUsedHand) {
        if (!pLevel.isClientSide() && pUsedHand == InteractionHand.MAIN_HAND) {
            int factor = 1;

            ItemStack stack = pPlayer.getItemInHand(pUsedHand);
            CompoundTag nbt = new CompoundTag();
            try {
                factor = stack.getTag().getInt("used_factor");
                nbt.putInt("used_factor", factor + 1);
            } catch (Exception e) {
                nbt.putInt("used_factor", 1);
            }
            stack.setTag(nbt);

            pPlayer.sendSystemMessage(Component.literal("used factor " + factor));
        }

        return super.use(pLevel, pPlayer, pUsedHand);
    }
}

 

{
  "parent": "item/generated",
  "textures": {
    "layer0": "betterenchanting:item/clean_dust"
  },
  "overrides": [
    {
      "predicate": {
        "betterenchanting:used_factor": 0.5
      },
      "model": "betterenchanting:item/clean_dust_used_1"
    },
    {
      "predicate": {
        "betterenchanting:used_factor": 1
      },
      "model": "betterenchanting:item/clean_dust_used_2"
    }
  ]
}

 

Edited by magnesnasamice
Posted
Quote

but I have no idea how to connect ItemModelOverrides in Json file with NBT tag

Since you are using NBT maybe you should look at the LightBlock property handler in the vanilla ItemProperties class?

Or this is some others mods using item properties:

https://github.com/search?q=ItemPropertyFunction+language%3AJava&type=code&l=Java

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Posted

I changed things a little and I have seen my item change model, but now whenever I try to get item from creative tab, my game crashes.  

Terminal:

Caused by: java.lang.NullPointerException: Cannot invoke "net.minecraft.nbt.CompoundTag.getInt(String)" because the return value of "net.minecraft.world.item.ItemStack.getTag()" is null


crash log:

---- Minecraft Crash Report ----
// Hey, that tickles! Hehehe!

Time: 2023-05-18 16:44:16
Description: Rendering screen

java.lang.NullPointerException: Cannot invoke "net.minecraft.nbt.CompoundTag.getInt(String)" because the return value of "net.minecraft.world.item.ItemStack.getTag()" is null
	at net.magnesnasamice.betterenchanting.BetterEnchanting$ClientModEvents.lambda$onClientSetup$0(BetterEnchanting.java:65) ~[%23193!/:?] {re:classloading}
	at net.minecraft.client.renderer.block.model.ItemOverrides.resolve(ItemOverrides.java:83) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.renderer.entity.ItemRenderer.getModel(ItemRenderer.java:220) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.renderer.entity.ItemRenderer.tryRenderGuiItem(ItemRenderer.java:296) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.renderer.entity.ItemRenderer.tryRenderGuiItem(ItemRenderer.java:291) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.renderer.entity.ItemRenderer.renderAndDecorateItem(ItemRenderer.java:287) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.renderSlot(AbstractContainerScreen.java:264) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.render(AbstractContainerScreen.java:119) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screens.inventory.EffectRenderingInventoryScreen.render(EffectRenderingInventoryScreen.java:28) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screens.inventory.CreativeModeInventoryScreen.render(CreativeModeInventoryScreen.java:618) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraftforge.client.ForgeHooksClient.drawScreenInternal(ForgeHooksClient.java:441) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23187%23194!/:?] {re:classloading}
	at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:434) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23187%23194!/:?] {re:classloading}
	at net.minecraft.client.renderer.GameRenderer.render(GameRenderer.java:908) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:1141) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:705) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.run(Main.java:212) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:51) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
	at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
	at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
	at net.minecraftforge.fml.loading.targets.ForgeClientUserdevLaunchHandler.lambda$launchService$0(ForgeClientUserdevLaunchHandler.java:25) ~[fmlloader-1.19.2-43.2.11.jar%23101!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] {}


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

-- Head --
Thread: Render thread
Stacktrace:
	at net.magnesnasamice.betterenchanting.BetterEnchanting$ClientModEvents.lambda$onClientSetup$0(BetterEnchanting.java:65) ~[%23193!/:?] {re:classloading}
	at net.minecraft.client.renderer.block.model.ItemOverrides.resolve(ItemOverrides.java:83) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.renderer.entity.ItemRenderer.getModel(ItemRenderer.java:220) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.renderer.entity.ItemRenderer.tryRenderGuiItem(ItemRenderer.java:296) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.renderer.entity.ItemRenderer.tryRenderGuiItem(ItemRenderer.java:291) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.renderer.entity.ItemRenderer.renderAndDecorateItem(ItemRenderer.java:287) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.renderSlot(AbstractContainerScreen.java:264) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.render(AbstractContainerScreen.java:119) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screens.inventory.EffectRenderingInventoryScreen.render(EffectRenderingInventoryScreen.java:28) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screens.inventory.CreativeModeInventoryScreen.render(CreativeModeInventoryScreen.java:618) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraftforge.client.ForgeHooksClient.drawScreenInternal(ForgeHooksClient.java:441) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23187%23194!/:?] {re:classloading}
	at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:434) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23187%23194!/:?] {re:classloading}
-- Screen render details --
Details:
	Screen name: net.minecraft.client.gui.screens.inventory.CreativeModeInventoryScreen
	Mouse location: Scaled: (402, 234). Absolute: (1609.000000, 937.000000)
	Screen size: Scaled: (640, 360). Absolute: (2560, 1440). Scale factor of 4.000000
Stacktrace:
	at net.minecraft.client.renderer.GameRenderer.render(GameRenderer.java:908) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:1141) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:705) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.run(Main.java:212) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:51) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
	at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
	at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
	at net.minecraftforge.fml.loading.targets.ForgeClientUserdevLaunchHandler.lambda$launchService$0(ForgeClientUserdevLaunchHandler.java:25) ~[fmlloader-1.19.2-43.2.11.jar%23101!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] {}


-- Affected level --
Details:
	All players: 1 total; [LocalPlayer['Dev'/55, l='ClientLevel', x=-261.94, y=69.00, z=162.45]]
	Chunk stats: 961, 609
	Level dimension: minecraft:overworld
	Level spawn location: World: (16,71,-48), Section: (at 0,7,0 in 1,4,-3; chunk contains blocks 16,-64,-48 to 31,319,-33), Region: (0,-1; contains chunks 0,-32 to 31,-1, blocks 0,-64,-512 to 511,319,-1)
	Level time: 123743 game time, 57320 day time
	Server brand: forge
	Server type: Integrated singleplayer server
Stacktrace:
	at net.minecraft.client.multiplayer.ClientLevel.fillReportDetails(ClientLevel.java:465) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.fillReport(Minecraft.java:2342) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:722) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.run(Main.java:212) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:51) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
	at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
	at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
	at net.minecraftforge.fml.loading.targets.ForgeClientUserdevLaunchHandler.lambda$launchService$0(ForgeClientUserdevLaunchHandler.java:25) ~[fmlloader-1.19.2-43.2.11.jar%23101!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%23114!/:?] {}
	at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] {}


-- Last reload --
Details:
	Reload number: 1
	Reload reason: initial
	Finished: Yes
	Packs: Default, Mod Resources

-- System Details --
Details:
	Minecraft Version: 1.19.2
	Minecraft Version ID: 1.19.2
	Operating System: Windows 10 (amd64) version 10.0
	Java Version: 17.0.4.1, Oracle Corporation
	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
	Memory: 1087216256 bytes (1036 MiB) / 2149580800 bytes (2050 MiB) up to 4271898624 bytes (4074 MiB)
	CPUs: 12
	Processor Vendor: AuthenticAMD
	Processor Name: AMD Ryzen 5 3600 6-Core Processor              
	Identifier: AuthenticAMD Family 23 Model 113 Stepping 0
	Microarchitecture: Zen 2
	Frequency (GHz): 3.59
	Number of physical packages: 1
	Number of physical CPUs: 6
	Number of logical CPUs: 12
	Graphics card #0 name: NVIDIA GeForce GTX 1660 SUPER
	Graphics card #0 vendor: NVIDIA (0x10de)
	Graphics card #0 VRAM (MB): 4095.00
	Graphics card #0 deviceId: 0x21c4
	Graphics card #0 versionInfo: DriverVersion=31.0.15.3168
	Memory slot #0 capacity (MB): 8192.00
	Memory slot #0 clockSpeed (GHz): 3.20
	Memory slot #0 type: DDR4
	Memory slot #1 capacity (MB): 8192.00
	Memory slot #1 clockSpeed (GHz): 3.20
	Memory slot #1 type: DDR4
	Virtual memory max (MB): 31141.66
	Virtual memory used (MB): 22923.47
	Swap memory total (MB): 14848.00
	Swap memory used (MB): 425.21
	JVM Flags: 1 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump
	Launched Version: MOD_DEV
	Backend library: LWJGL version 3.3.1 build 7
	Backend API: NVIDIA GeForce GTX 1660 SUPER/PCIe/SSE2 GL version 3.2.0 NVIDIA 531.68, NVIDIA Corporation
	Window size: 2560x1440
	GL Caps: Using framebuffer using OpenGL 3.2
	GL debug messages: 
	Using VBOs: Yes
	Is Modded: Definitely; Client brand changed to 'forge'; Server brand changed to 'forge'
	Type: Integrated Server (map_client.txt)
	Graphics mode: fancy
	Resource Packs: vanilla, mod_resources
	Current Language: Polski (Polska)
	CPU: 12x AMD Ryzen 5 3600 6-Core Processor 
	Server Running: true
	Player Count: 1 / 8; [ServerPlayer['Dev'/55, l='ServerLevel[test]', x=-261.94, y=69.00, z=162.45]]
	Data Packs: vanilla, mod:betterenchanting, mod:forge, mod:jei (incompatible)
	World Generation: Stable
	ModLauncher: 10.0.8+10.0.8+main.0ef7e830
	ModLauncher launch target: forgeclientuserdev
	ModLauncher naming: mcp
	ModLauncher services: 
		mixin-0.8.5.jar mixin PLUGINSERVICE 
		eventbus-6.0.3.jar eventbus PLUGINSERVICE 
		fmlloader-1.19.2-43.2.11.jar slf4jfixer PLUGINSERVICE 
		fmlloader-1.19.2-43.2.11.jar object_holder_definalize PLUGINSERVICE 
		fmlloader-1.19.2-43.2.11.jar runtime_enum_extender PLUGINSERVICE 
		fmlloader-1.19.2-43.2.11.jar capability_token_subclass PLUGINSERVICE 
		accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE 
		fmlloader-1.19.2-43.2.11.jar runtimedistcleaner PLUGINSERVICE 
		modlauncher-10.0.8.jar mixin TRANSFORMATIONSERVICE 
		modlauncher-10.0.8.jar fml TRANSFORMATIONSERVICE 
	FML Language Providers: 
		[email protected]
		lowcodefml@null
		javafml@null
	Mod List: 
		forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1|Minecraft                     |minecraft                     |1.19.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
		main                                              |BetterEnchanting              |betterenchanting              |0.0.1-1.19.2        |DONE      |Manifest: NOSIGNATURE
		                                                  |Forge                         |forge                         |43.2.11             |DONE      |Manifest: NOSIGNATURE
		jei-1.19.2-forge-11.5.0.297_mapped_parchment_2022.|Just Enough Items             |jei                           |11.5.0.297          |DONE      |Manifest: NOSIGNATURE
	Crash Report UUID: da45dbc3-e2e4-4ee1-9890-1c115f6d0081
	FML: 43.2
	Forge: net.minecraftforge:43.2.11

 

latest.log:
 

[18May2023 16:43:37.748] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, MOD_DEV, --assetIndex, 1.19, --assetsDir, C:\Users\klitw\.gradle\caches\forge_gradle\assets, --gameDir, ., --fml.forgeVersion, 43.2.11, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853]
[18May2023 16:43:37.752] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.4.1 by Oracle Corporation; OS Windows 10 arch amd64 version 10.0
[18May2023 16:43:37.896] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/klitw/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23126!/ Service=ModLauncher Env=CLIENT
[18May2023 16:43:38.251] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\klitw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.19.2-43.2.11\c4c6aa79f77ff99337a87c8a593470a352ace940\javafmllanguage-1.19.2-43.2.11.jar is missing mods.toml file
[18May2023 16:43:38.254] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\klitw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.19.2-43.2.11\f965bd3c899a138766722578b67eac9ba516a92f\lowcodelanguage-1.19.2-43.2.11.jar is missing mods.toml file
[18May2023 16:43:38.256] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\klitw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.19.2-43.2.11\a9181c876e6cd6147ec367db5a626d248391364e\mclanguage-1.19.2-43.2.11.jar is missing mods.toml file
[18May2023 16:43:38.259] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\klitw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.19.2-43.2.11\a82f75c234fc56c9860af959d42978762fdac9f7\fmlcore-1.19.2-43.2.11.jar is missing mods.toml file
[18May2023 16:43:38.346] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping!
[18May2023 16:43:39.436] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclientuserdev' with arguments [--version, MOD_DEV, --gameDir, ., --assetsDir, C:\Users\klitw\.gradle\caches\forge_gradle\assets, --assetIndex, 1.19]
[18May2023 16:43:42.311] [pool-3-thread-1/INFO] [net.minecraft.util.datafix.DataFixers/]: Building unoptimized datafixer
[18May2023 16:43:43.926] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/C:/Users/klitw/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2/forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/assets/.mcassetsroot' uses unexpected schema
[18May2023 16:43:43.926] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/C:/Users/klitw/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2/forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/data/.mcassetsroot' uses unexpected schema
[18May2023 16:43:43.937] [Render thread/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[18May2023 16:43:43.943] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: Dev
[18May2023 16:43:44.045] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Backend library: LWJGL version 3.3.1 build 7
[18May2023 16:43:44.585] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 43.2.11, for MC 1.19.2 with MCP 20220805.130853
[18May2023 16:43:44.585] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v43.2.11 Initialized
[18May2023 16:43:45.520] [Render thread/INFO] [net.minecraftforge.gametest.ForgeGameTestHooks/]: Enabled Gametest Namespaces: [BetterEnchanting]
[18May2023 16:43:45.680] [Render thread/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: Default, Mod Resources
[18May2023 16:43:46.022] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json
[18May2023 16:43:46.679] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: AHEAD Current: 43.2.11 Target: null
[18May2023 16:43:52.246] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:item.goat_horn.play
[18May2023 16:43:52.246] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:entity.goat.screaming.horn_break
[18May2023 16:43:52.286] [Render thread/INFO] [com.mojang.blaze3d.audio.Library/]: OpenAL initialized on device OpenAL Soft on Headset Earphone (HyperX Virtual Surround Sound)
[18May2023 16:43:52.287] [Render thread/INFO] [net.minecraft.client.sounds.SoundEngine/SOUNDS]: Sound engine started
[18May2023 16:43:52.418] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x4 minecraft:textures/atlas/blocks.png-atlas
[18May2023 16:43:52.427] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas
[18May2023 16:43:52.428] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas
[18May2023 16:43:52.428] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas
[18May2023 16:43:52.429] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas
[18May2023 16:43:52.429] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas
[18May2023 16:43:52.430] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas
[18May2023 16:43:53.112] [Render thread/WARN] [net.minecraft.client.renderer.ShaderInstance/]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program.
[18May2023 16:43:53.260] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas
[18May2023 16:43:53.261] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas
[18May2023 16:43:53.261] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas
[18May2023 16:43:53.262] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x128x0 jei:textures/atlas/gui.png-atlas
[18May2023 16:43:53.905] [Realms Notification Availability checker #1/INFO] [com.mojang.realmsclient.client.RealmsClient/]: Could not authorize you against Realms server: Invalid session id
[18May2023 16:43:59.455] [Render thread/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Loaded 7 recipes
[18May2023 16:44:00.078] [Render thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 1179 advancements
[18May2023 16:44:00.487] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Starting integrated minecraft server version 1.19.2
[18May2023 16:44:00.487] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair
[18May2023 16:44:00.834] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld
[18May2023 16:44:03.594] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Przygotowywanie strefy odrodzenia: 0%
[18May2023 16:44:03.594] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Przygotowywanie strefy odrodzenia: 0%
[18May2023 16:44:03.594] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Przygotowywanie strefy odrodzenia: 0%
[18May2023 16:44:03.595] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Przygotowywanie strefy odrodzenia: 0%
[18May2023 16:44:03.595] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Przygotowywanie strefy odrodzenia: 0%
[18May2023 16:44:03.595] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Przygotowywanie strefy odrodzenia: 0%
[18May2023 16:44:03.863] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Przygotowywanie strefy odrodzenia: 2%
[18May2023 16:44:04.346] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Przygotowywanie strefy odrodzenia: 76%
[18May2023 16:44:04.474] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 3630 ms
[18May2023 16:44:04.474] [Server thread/INFO] [net.minecraftforge.server.permission.PermissionAPI/]: Successfully initialized permission handler forge:default_handler
[18May2023 16:44:04.545] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing view distance to 12, from 10
[18May2023 16:44:04.547] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing simulation distance to 12, from 0
[18May2023 16:44:04.693] [Render thread/WARN] [io.netty.util.internal.SystemPropertyUtil/]: Unable to parse the boolean system property 'java.net.preferIPv6Addresses':system - using the default value: false
[18May2023 16:44:05.275] [Netty Local Client IO #0/INFO] [net.minecraftforge.network.NetworkHooks/]: Connected to a modded server.
[18May2023 16:44:05.319] [Server thread/INFO] [net.minecraftforge.common.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@5094a8ee
[18May2023 16:44:05.333] [Server thread/INFO] [net.minecraft.server.players.PlayerList/]: Dev[local:E:da771ac1] logged in with entity id 55 at (-261.9395311675657, 69.0, 162.45408658484675)
[18May2023 16:44:05.388] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Gracz Dev do??czy? do gry
[18May2023 16:44:06.250] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver received class net.minecraftforge.client.event.ClientPlayerNetworkEvent$LoggingIn
[18May2023 16:44:06.251] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from DISABLED to ENABLED
[18May2023 16:44:06.369] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver received class net.minecraftforge.client.event.RecipesUpdatedEvent
[18May2023 16:44:06.500] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver received class net.minecraftforge.event.TagsUpdatedEvent
[18May2023 16:44:06.500] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from ENABLED to JEI_STARTED
[18May2023 16:44:06.501] [Render thread/INFO] [mezz.jei.common.util.LoggedTimer/]: Starting JEI...
[18May2023 16:44:06.521] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering item subtypes: jei:minecraft ...
[18May2023 16:44:06.523] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering item subtypes: jei:minecraft took 1.810 ms
[18May2023 16:44:06.524] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering item subtypes: jei:gui ...
[18May2023 16:44:06.524] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering item subtypes: jei:gui took 7.100 ?s
[18May2023 16:44:06.524] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering item subtypes: jei:debug ...
[18May2023 16:44:06.524] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering item subtypes: jei:debug took 6.600 ?s
[18May2023 16:44:06.524] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering item subtypes: jei:forge_gui ...
[18May2023 16:44:06.524] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering item subtypes: jei:forge_gui took 6.700 ?s
[18May2023 16:44:06.524] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering item subtypes: jei:internal ...
[18May2023 16:44:06.524] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering item subtypes: jei:internal took 7.200 ?s
[18May2023 16:44:06.525] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering fluid subtypes: jei:minecraft ...
[18May2023 16:44:06.525] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering fluid subtypes: jei:minecraft took 14.10 ?s
[18May2023 16:44:06.525] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering fluid subtypes: jei:gui ...
[18May2023 16:44:06.525] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering fluid subtypes: jei:gui took 7.000 ?s
[18May2023 16:44:06.525] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering fluid subtypes: jei:debug ...
[18May2023 16:44:06.526] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering fluid subtypes: jei:debug took 1.043 ms
[18May2023 16:44:06.526] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering fluid subtypes: jei:forge_gui ...
[18May2023 16:44:06.527] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering fluid subtypes: jei:forge_gui took 8.200 ?s
[18May2023 16:44:06.527] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering fluid subtypes: jei:internal ...
[18May2023 16:44:06.527] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering fluid subtypes: jei:internal took 5.900 ?s
[18May2023 16:44:06.528] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering ingredients: jei:minecraft ...
[18May2023 16:44:06.567] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering ingredients: jei:minecraft took 37.75 ms
[18May2023 16:44:06.567] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering ingredients: jei:gui ...
[18May2023 16:44:06.567] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering ingredients: jei:gui took 9.500 ?s
[18May2023 16:44:06.567] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering ingredients: jei:debug ...
[18May2023 16:44:06.568] [Render thread/INFO] [mezz.jei.core.config.file.ConfigSerializer/]: Loading config file: D:\eclipse\mods\BetterEnchanting\run\config\jei\jei-debug.ini
[18May2023 16:44:06.570] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering ingredients: jei:debug took 2.850 ms
[18May2023 16:44:06.570] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering ingredients: jei:forge_gui ...
[18May2023 16:44:06.570] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering ingredients: jei:forge_gui took 7.600 ?s
[18May2023 16:44:06.570] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering ingredients: jei:internal ...
[18May2023 16:44:06.570] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering ingredients: jei:internal took 5.300 ?s
[18May2023 16:44:06.578] [Render thread/ERROR] [mezz.jei.library.config.EditModeConfig/]: Failed to load blacklist from file D:\eclipse\mods\BetterEnchanting\run\config\jei\blacklist.cfg
java.nio.file.NoSuchFileException: D:\eclipse\mods\BetterEnchanting\run\config\jei\blacklist.cfg
	at sun.nio.fs.WindowsException.translateToIOException(WindowsException.java:85) ~[?:?]
	at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:103) ~[?:?]
	at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:108) ~[?:?]
	at sun.nio.fs.WindowsFileSystemProvider.newByteChannel(WindowsFileSystemProvider.java:236) ~[?:?]
	at java.nio.file.Files.newByteChannel(Files.java:380) ~[?:?]
	at java.nio.file.Files.newByteChannel(Files.java:432) ~[?:?]
	at java.nio.file.spi.FileSystemProvider.newInputStream(FileSystemProvider.java:422) ~[?:?]
	at java.nio.file.Files.newInputStream(Files.java:160) ~[?:?]
	at java.nio.file.Files.newBufferedReader(Files.java:2922) ~[?:?]
	at java.nio.file.Files.readAllLines(Files.java:3412) ~[?:?]
	at java.nio.file.Files.readAllLines(Files.java:3453) ~[?:?]
	at mezz.jei.library.config.EditModeConfig$FileSerializer.load(EditModeConfig.java:166) ~[jei-1.19.2-forge-11.5.0.297_mapped_parchment_2022.08.14-1.19.2.jar%23195!/:11.5.0.297]
	at mezz.jei.library.config.EditModeConfig.<init>(EditModeConfig.java:36) ~[jei-1.19.2-forge-11.5.0.297_mapped_parchment_2022.08.14-1.19.2.jar%23195!/:11.5.0.297]
	at mezz.jei.library.startup.JeiStarter.start(JeiStarter.java:101) ~[jei-1.19.2-forge-11.5.0.297_mapped_parchment_2022.08.14-1.19.2.jar%23195!/:11.5.0.297]
	at mezz.jei.forge.startup.StartEventObserver.transitionState(StartEventObserver.java:137) ~[jei-1.19.2-forge-11.5.0.297_mapped_parchment_2022.08.14-1.19.2.jar%23195!/:11.5.0.297]
	at mezz.jei.forge.startup.StartEventObserver.onEvent(StartEventObserver.java:100) ~[jei-1.19.2-forge-11.5.0.297_mapped_parchment_2022.08.14-1.19.2.jar%23195!/:11.5.0.297]
	at net.minecraftforge.eventbus.EventBus.doCastFilter(EventBus.java:260) ~[eventbus-6.0.3.jar%23113!/:?]
	at net.minecraftforge.eventbus.EventBus.lambda$addListener$11(EventBus.java:252) ~[eventbus-6.0.3.jar%23113!/:?]
	at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.3.jar%23113!/:?]
	at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.3.jar%23113!/:?]
	at net.minecraft.client.multiplayer.ClientPacketListener.handleUpdateTags(ClientPacketListener.java:1439) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.network.protocol.game.ClientboundUpdateTagsPacket.handle(ClientboundUpdateTagsPacket.java:38) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.network.protocol.game.ClientboundUpdateTagsPacket.handle(ClientboundUpdateTagsPacket.java:10) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:38) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:146) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:22) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:116) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:104) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:1098) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:705) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.client.main.Main.run(Main.java:212) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.client.main.Main.main(Main.java:51) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]
	at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
	at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
	at net.minecraftforge.fml.loading.targets.ForgeClientUserdevLaunchHandler.lambda$launchService$0(ForgeClientUserdevLaunchHandler.java:25) ~[fmlloader-1.19.2-43.2.11.jar%23101!/:?]
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%23114!/:?]
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%23114!/:?]
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%23114!/:?]
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%23114!/:?]
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%23114!/:?]
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%23114!/:?]
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%23114!/:?]
	at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?]
[18May2023 16:44:06.602] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering categories: jei:minecraft ...
[18May2023 16:44:06.623] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering categories: jei:minecraft took 20.37 ms
[18May2023 16:44:06.623] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering categories: jei:gui ...
[18May2023 16:44:06.623] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering categories: jei:gui took 10.80 ?s
[18May2023 16:44:06.624] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering categories: jei:debug ...
[18May2023 16:44:06.624] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering categories: jei:debug took 14.00 ?s
[18May2023 16:44:06.624] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering categories: jei:forge_gui ...
[18May2023 16:44:06.624] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering categories: jei:forge_gui took 115.8 ?s
[18May2023 16:44:06.624] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering categories: jei:internal ...
[18May2023 16:44:06.625] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering categories: jei:internal took 1.197 ms
[18May2023 16:44:06.626] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering vanilla category extensions: jei:minecraft ...
[18May2023 16:44:06.628] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering vanilla category extensions: jei:minecraft took 1.794 ms
[18May2023 16:44:06.628] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering vanilla category extensions: jei:gui ...
[18May2023 16:44:06.628] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering vanilla category extensions: jei:gui took 6.800 ?s
[18May2023 16:44:06.628] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering vanilla category extensions: jei:debug ...
[18May2023 16:44:06.628] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering vanilla category extensions: jei:debug took 7.400 ?s
[18May2023 16:44:06.628] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering vanilla category extensions: jei:forge_gui ...
[18May2023 16:44:06.628] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering vanilla category extensions: jei:forge_gui took 5.900 ?s
[18May2023 16:44:06.628] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering vanilla category extensions: jei:internal ...
[18May2023 16:44:06.628] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering vanilla category extensions: jei:internal took 6.100 ?s
[18May2023 16:44:06.631] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipe catalysts: jei:minecraft ...
[18May2023 16:44:06.632] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipe catalysts: jei:minecraft took 1.155 ms
[18May2023 16:44:06.633] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipe catalysts: jei:gui ...
[18May2023 16:44:06.633] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipe catalysts: jei:gui took 8.300 ?s
[18May2023 16:44:06.633] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipe catalysts: jei:debug ...
[18May2023 16:44:06.633] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipe catalysts: jei:debug took 12.10 ?s
[18May2023 16:44:06.633] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipe catalysts: jei:forge_gui ...
[18May2023 16:44:06.633] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipe catalysts: jei:forge_gui took 5.800 ?s
[18May2023 16:44:06.633] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipe catalysts: jei:internal ...
[18May2023 16:44:06.633] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipe catalysts: jei:internal took 5.900 ?s
[18May2023 16:44:06.635] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering advanced plugins: jei:minecraft ...
[18May2023 16:44:06.635] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering advanced plugins: jei:minecraft took 17.50 ?s
[18May2023 16:44:06.635] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering advanced plugins: jei:gui ...
[18May2023 16:44:06.635] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering advanced plugins: jei:gui took 4.200 ?s
[18May2023 16:44:06.635] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering advanced plugins: jei:debug ...
[18May2023 16:44:06.635] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering advanced plugins: jei:debug took 5.300 ?s
[18May2023 16:44:06.635] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering advanced plugins: jei:forge_gui ...
[18May2023 16:44:06.636] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering advanced plugins: jei:forge_gui took 6.000 ?s
[18May2023 16:44:06.636] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering advanced plugins: jei:internal ...
[18May2023 16:44:06.636] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering advanced plugins: jei:internal took 5.100 ?s
[18May2023 16:44:06.636] [Render thread/INFO] [mezz.jei.common.util.LoggedTimer/]: Building recipe registry...
[18May2023 16:44:06.647] [Render thread/INFO] [mezz.jei.common.util.LoggedTimer/]: Building recipe registry took 10.98 ms
[18May2023 16:44:06.649] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes: jei:minecraft ...
[18May2023 16:44:06.874] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes: jei:minecraft took 224.6 ms
[18May2023 16:44:06.874] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes: jei:gui ...
[18May2023 16:44:06.875] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes: jei:gui took 7.000 ?s
[18May2023 16:44:06.875] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes: jei:debug ...
[18May2023 16:44:06.875] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes: jei:debug took 10.10 ?s
[18May2023 16:44:06.875] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes: jei:forge_gui ...
[18May2023 16:44:06.875] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes: jei:forge_gui took 4.900 ?s
[18May2023 16:44:06.875] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes: jei:internal ...
[18May2023 16:44:06.875] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes: jei:internal took 5.600 ?s
[18May2023 16:44:06.878] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes transfer handlers: jei:minecraft ...
[18May2023 16:44:06.881] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes transfer handlers: jei:minecraft took 2.408 ms
[18May2023 16:44:06.882] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes transfer handlers: jei:gui ...
[18May2023 16:44:06.882] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes transfer handlers: jei:gui took 7.600 ?s
[18May2023 16:44:06.882] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes transfer handlers: jei:debug ...
[18May2023 16:44:06.882] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes transfer handlers: jei:debug took 5.300 ?s
[18May2023 16:44:06.882] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes transfer handlers: jei:forge_gui ...
[18May2023 16:44:06.882] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes transfer handlers: jei:forge_gui took 5.900 ?s
[18May2023 16:44:06.882] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes transfer handlers: jei:internal ...
[18May2023 16:44:06.882] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering recipes transfer handlers: jei:internal took 4.500 ?s
[18May2023 16:44:06.888] [Render thread/INFO] [mezz.jei.common.util.LoggedTimer/]: Building runtime...
[18May2023 16:44:06.905] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering gui handlers: jei:minecraft ...
[18May2023 16:44:06.907] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering gui handlers: jei:minecraft took 1.740 ms
[18May2023 16:44:06.908] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering gui handlers: jei:gui ...
[18May2023 16:44:06.913] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering gui handlers: jei:gui took 5.186 ms
[18May2023 16:44:06.914] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering gui handlers: jei:debug ...
[18May2023 16:44:06.914] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering gui handlers: jei:debug took 16.40 ?s
[18May2023 16:44:06.914] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering gui handlers: jei:forge_gui ...
[18May2023 16:44:06.914] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering gui handlers: jei:forge_gui took 6.600 ?s
[18May2023 16:44:06.914] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering gui handlers: jei:internal ...
[18May2023 16:44:06.914] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Registering gui handlers: jei:internal took 5.200 ?s
[18May2023 16:44:06.918] [Render thread/INFO] [mezz.jei.common.util.LoggedTimer/]: Building runtime took 29.43 ms
[18May2023 16:44:06.918] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime: jei:minecraft ...
[18May2023 16:44:06.918] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime: jei:minecraft took 23.20 ?s
[18May2023 16:44:06.919] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime: jei:gui ...
[18May2023 16:44:06.919] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime: jei:gui took 5.400 ?s
[18May2023 16:44:06.919] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime: jei:debug ...
[18May2023 16:44:06.919] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime: jei:debug took 11.50 ?s
[18May2023 16:44:06.919] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime: jei:forge_gui ...
[18May2023 16:44:06.921] [Render thread/INFO] [mezz.jei.gui.startup.JeiGuiStarter/]: Starting JEI GUI
[18May2023 16:44:06.921] [Render thread/INFO] [mezz.jei.common.util.LoggedTimer/]: Building ingredient list...
[18May2023 16:44:06.925] [Render thread/INFO] [mezz.jei.common.util.LoggedTimer/]: Building ingredient list took 3.983 ms
[18May2023 16:44:06.925] [Render thread/INFO] [mezz.jei.common.util.LoggedTimer/]: Building ingredient filter...
[18May2023 16:44:06.950] [Render thread/INFO] [mezz.jei.core.config.file.ConfigSerializer/]: Loading config file: D:\eclipse\mods\BetterEnchanting\run\config\jei\jei-client.ini
[18May2023 16:44:06.958] [Render thread/INFO] [mezz.jei.gui.ingredients.IngredientFilter/]: Adding 1409 ingredients
[18May2023 16:44:07.097] [Render thread/INFO] [mezz.jei.gui.ingredients.IngredientFilter/]: Added 1409 ingredients
[18May2023 16:44:07.098] [Render thread/INFO] [mezz.jei.common.util.LoggedTimer/]: Building ingredient filter took 172.3 ms
[18May2023 16:44:07.158] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime: jei:forge_gui took 238.8 ms
[18May2023 16:44:07.158] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime: jei:internal ...
[18May2023 16:44:07.158] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime: jei:internal took 7.800 ?s
[18May2023 16:44:07.158] [Render thread/INFO] [mezz.jei.common.util.LoggedTimer/]: Starting JEI took 657.9 ms
[18May2023 16:44:07.190] [Render thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 127 advancements
[18May2023 16:44:13.928] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server
[18May2023 16:44:13.930] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players
[18May2023 16:44:13.945] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds
[18May2023 16:44:15.116] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[test]'/minecraft:overworld
[18May2023 16:44:15.879] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[test]'/minecraft:the_nether
[18May2023 16:44:15.880] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[test]'/minecraft:the_end
[18May2023 16:44:15.891] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (test): All chunks are saved
[18May2023 16:44:15.891] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[18May2023 16:44:15.891] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[18May2023 16:44:15.891] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage: All dimensions are saved
[18May2023 16:44:16.332] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver received class net.minecraftforge.client.event.ClientPlayerNetworkEvent$LoggingOut
[18May2023 16:44:16.332] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from JEI_STARTED to DISABLED
[18May2023 16:44:16.332] [Render thread/INFO] [mezz.jei.library.startup.JeiStarter/]: Stopping JEI
[18May2023 16:44:16.332] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime Unavailable: jei:minecraft ...
[18May2023 16:44:16.332] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime Unavailable: jei:minecraft took 14.60 ?s
[18May2023 16:44:16.332] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime Unavailable: jei:gui ...
[18May2023 16:44:16.332] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime Unavailable: jei:gui took 5.900 ?s
[18May2023 16:44:16.332] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime Unavailable: jei:debug ...
[18May2023 16:44:16.332] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime Unavailable: jei:debug took 6.200 ?s
[18May2023 16:44:16.333] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime Unavailable: jei:forge_gui ...
[18May2023 16:44:16.333] [Render thread/INFO] [mezz.jei.forge.plugins.forge.ForgeGuiPlugin/]: Stopping JEI GUI
[18May2023 16:44:16.337] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime Unavailable: jei:forge_gui took 4.647 ms
[18May2023 16:44:16.337] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime Unavailable: jei:internal ...
[18May2023 16:44:16.337] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending Runtime Unavailable: jei:internal took 6.800 ?s
[18May2023 16:44:16.564] [Render thread/ERROR] [net.minecraft.client.Minecraft/FATAL]: Reported exception thrown!
net.minecraft.ReportedException: Rendering screen
	at net.minecraft.client.renderer.GameRenderer.render(GameRenderer.java:921) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:1141) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:705) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.client.main.Main.run(Main.java:212) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.client.main.Main.main(Main.java:51) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]
	at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
	at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
	at net.minecraftforge.fml.loading.targets.ForgeClientUserdevLaunchHandler.lambda$launchService$0(ForgeClientUserdevLaunchHandler.java:25) ~[fmlloader-1.19.2-43.2.11.jar%23101!/:?]
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%23114!/:?]
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%23114!/:?]
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%23114!/:?]
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%23114!/:?]
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%23114!/:?]
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%23114!/:?]
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%23114!/:?]
	at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?]
Caused by: java.lang.NullPointerException: Cannot invoke "net.minecraft.nbt.CompoundTag.getInt(String)" because the return value of "net.minecraft.world.item.ItemStack.getTag()" is null
	at net.magnesnasamice.betterenchanting.BetterEnchanting$ClientModEvents.lambda$onClientSetup$0(BetterEnchanting.java:65) ~[%23193!/:?]
	at net.minecraft.client.renderer.block.model.ItemOverrides.resolve(ItemOverrides.java:83) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.client.renderer.entity.ItemRenderer.getModel(ItemRenderer.java:220) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.client.renderer.entity.ItemRenderer.tryRenderGuiItem(ItemRenderer.java:296) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.client.renderer.entity.ItemRenderer.tryRenderGuiItem(ItemRenderer.java:291) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.client.renderer.entity.ItemRenderer.renderAndDecorateItem(ItemRenderer.java:287) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.renderSlot(AbstractContainerScreen.java:264) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.render(AbstractContainerScreen.java:119) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.client.gui.screens.inventory.EffectRenderingInventoryScreen.render(EffectRenderingInventoryScreen.java:28) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraft.client.gui.screens.inventory.CreativeModeInventoryScreen.render(CreativeModeInventoryScreen.java:618) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	at net.minecraftforge.client.ForgeHooksClient.drawScreenInternal(ForgeHooksClient.java:441) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23187%23194!/:?]
	at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:434) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23187%23194!/:?]
	at net.minecraft.client.renderer.GameRenderer.render(GameRenderer.java:908) ~[forge-1.19.2-43.2.11_mapped_parchment_2022.08.14-1.19.2-recomp.jar%23188!/:?]
	... 17 more
[18May2023 16:44:16.569] [Render thread/FATAL] [net.minecraftforge.common.ForgeMod/]: Preparing crash report with UUID 07d119ad-c309-4693-a28f-0d82eb6a2f41
[18May2023 16:44:16.571] [Render thread/FATAL] [net.minecraftforge.common.ForgeMod/]: Preparing crash report with UUID da45dbc3-e2e4-4ee1-9890-1c115f6d0081

 

Posted

This is not a learning java forum.

if you don't know what this means you need to buy a book on learning java or whatever it takes to learn the language.

Quote

java.lang.NullPointerException: Cannot invoke "net.minecraft.nbt.CompoundTag.getInt(String)" because the return value of "net.minecraft.world.item.ItemStack.getTag()" is null at net.magnesnasamice.betterenchanting.BetterEnchanting$ClientModEvents.lambda$onClientSetup$0(BetterEnchanting.java:65) ~[%23193!/:?] {re:classloading}

 

You also posted this less than 15 minutes after I answered your last question.

i.e. you spent practically zero time trying to understand this for yourself.

 

Finally, stop dumping code and logs in the forums. I already told you this.
 

Quote

Basic forum issues:

* Don't post code in the forums, put all relevant code to reproduce the problem on github.

 

Code should be posted on github, logs on a file sharing site.

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I FOUND IT, Thank you! it was an invalid mod It's Info-tools
    • hi everyone, I was editing a modpack and installing a world generation mod (oh the biomes weve gone), this also required adding 3 more mods, after adding them the modpack crashed while loading the mods. If anyone can figure out where the problem is, it would really help me, thanks in advance. Below is the crashlog     [22:08:21] [main/INFO]: ModLauncher running: args [--username, U_MEST_GRUSS, --version, forge-47.3.6, --gameDir, C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern, --assetsDir, C:\Users\samsc\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, 35eff7ce4ab94080a0d49f21fa7fd08d, --accessToken, ????????, --clientId, N2E3YWZiNjYtZmNjMi00ZGY4LWIwMTUtNGE1YTMxYmRmYmNk, --xuid, 2535441773991998, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\samsc\curseforge\minecraft\Install\quickPlay\java\1735074499399.json, --launchTarget, forgeclient, --fml.forgeVersion, 47.3.6, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [22:08:21] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Microsoft; OS Windows 11 arch amd64 version 10.0 [22:08:22] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [22:08:22] [main/INFO]: Trying GL version 4.6 [22:08:22] [main/INFO]: Requested GL version 4.6 got version 4.6 [22:08:23] [main/INFO]: OptiFineTransformationService.onLoad [22:08:23] [main/INFO]: OptiFine ZIP file URL: union:/C:/Users/samsc/curseforge/minecraft/Instances/GregTech%20Community%20Pack%20Modern/mods/OptiFine_1.20.1_HD_U_I6.jar%23245!/ [22:08:23] [main/INFO]: OptiFine ZIP file: C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods\OptiFine_1.20.1_HD_U_I6.jar [22:08:23] [main/INFO]: Target.PRE_CLASS is available [22:08:23] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/samsc/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [22:08:23] [main/INFO]: OptiFineTransformationService.initialize [22:08:23] [pool-2-thread-1/INFO]: GL info: NVIDIA GeForce GT 1030/PCIe/SSE2 GL version 4.6.0 NVIDIA 556.12, NVIDIA Corporation [22:08:23] [main/INFO]: Found mod file ae2ct-1.20.1-1.0.4.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file ae2wtlib-15.2.3-forge.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file alternate_current-mc1.20-1.7.0.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file appleskin-forge-mc1.20.1-2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file appliedenergistics2-forge-15.3.1-beta.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file Architects-Palette-1.20.1-1.3.6.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file AttributeFix-Forge-1.20.1-21.0.4.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file badpackets-forge-0.4.3.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.10-all.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file BetterTags-1.20.1-1.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file Bookshelf-Forge-1.20.1-20.2.13.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file buildinggadgets2-1.0.7.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file clienttweaks-forge-1.20-11.1.0.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file Clumps-forge-1.20.1-12.0.0.4.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file CodeChickenLib-1.20.1-4.4.0.516-universal.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file comforts-forge-6.4.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file Controlling-forge-1.20.1-12.0.2.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file Corgilib-Forge-1.20.1-4.0.3.3.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file craftingstation-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file craftingtweaks-forge-1.20.1-18.2.5.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file curios-forge-5.11.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file defaultoptions-forge-1.20-18.0.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file elevatorid-1.20.1-lex-1.9.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file embeddium-0.3.31+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file emi-1.1.18+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file EnderStorage-1.20.1-2.11.0.188-universal.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file ExtendedAE-1.20-1.2.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file FastLeafDecay-32.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file Fastload-Reforged-mc1.20.1-3.4.0.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file FastSuite-1.20.1-5.0.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file ferritecore-6.0.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file findme-3.2.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file FpsReducer2-forge-1.20-2.5.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file FramedBlocks-9.3.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file ftb-chunks-forge-2001.3.4.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file ftb-essentials-forge-2001.2.2.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file ftb-library-forge-2001.2.6.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file ftb-quests-forge-2001.4.9.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file ftb-teams-forge-2001.3.0.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file ftb-ultimine-forge-2001.1.5.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file ftb-xmod-compat-forge-2.1.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file ftbbackups2-forge-1.20-1.0.23.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.4.9.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file Glodium-1.20-1.5-forge.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file gtceu-1.20.1-1.6.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file HangGlider-v8.0.1-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file Iceberg-1.20.1-forge-1.1.25.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file inventoryessentials-forge-1.20.1-8.2.6.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file InventoryProfilesNext-forge-1.20-1.10.11.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file item-filters-forge-2001.1.0-build.59.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file Jade-1.20.1-Forge-11.12.2.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file JAVD-Forge-5.0.1+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file jei-1.20.1-forge-15.20.0.105.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file kubejs-forge-2001.6.5-build.16.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file libIPN-forge-1.20-4.0.2.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file LibX-1.20.1-5.0.14.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file lootjs-forge-1.20.1-2.12.0.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file mae2-1.4.4.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file modelfix-1.15.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file modernfix-forge-5.19.7+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file MouseTweaks-forge-mc1.20.1-2.25.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file NoChatReports-FORGE-1.20.1-v2.2.2.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file Oh-The-Biomes-Weve-Gone-Forge-1.4.4.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file Oh-The-Trees-Youll-Grow-forge-1.20.1-1.3.3.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file Placebo-1.20.1-8.6.2.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file polylib-forge-2000.0.3-build.143.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file polymorph-forge-0.49.8+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file PuzzlesLib-v8.1.25-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file rhino-forge-2001.2.3-build.6.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file Searchables-forge-1.20.1-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file smoothboot(reloaded)-mc1.20.1-0.0.4.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.20.17.1150.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file sophisticatedcore-1.20.1-1.0.1.809.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file StorageDrawers-1.20.1-12.9.13.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file TerraBlender-forge-1.20.1-3.0.1.7.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file ToastControl-1.20.1-8.0.3.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file ToolBelt-1.20.1-1.20.02.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file torchmaster-20.1.9.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file TravelAnchors-1.20.1-5.0.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file trenzalore-forge-3.3.10+mc1.20.1-all.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file waystones-forge-1.20-14.1.6.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file Xaeros_Minimap_24.6.1_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file XaerosWorldMap_1.39.2_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file xtonesreworked-1.0.4-F_1.20.1-47.2.0.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/INFO]: Found mod file YeetusExperimentus-Forge-2.3.1-build.6+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern\mods} [22:08:23] [main/WARN]: Mod file C:\Users\samsc\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.3.6\fmlcore-1.20.1-47.3.6.jar is missing mods.toml file [22:08:23] [main/WARN]: Mod file C:\Users\samsc\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.3.6\javafmllanguage-1.20.1-47.3.6.jar is missing mods.toml file [22:08:23] [main/WARN]: Mod file C:\Users\samsc\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.3.6\lowcodelanguage-1.20.1-47.3.6.jar is missing mods.toml file [22:08:23] [main/WARN]: Mod file C:\Users\samsc\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.3.6\mclanguage-1.20.1-47.3.6.jar is missing mods.toml file [22:08:23] [main/INFO]: Found mod file fmlcore-1.20.1-47.3.6.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@42f9c19a [22:08:23] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.3.6.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@42f9c19a [22:08:23] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.3.6.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@42f9c19a [22:08:23] [main/INFO]: Found mod file mclanguage-1.20.1-47.3.6.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@42f9c19a [22:08:23] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@42f9c19a [22:08:23] [main/INFO]: Found mod file forge-1.20.1-47.3.6-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@42f9c19a [22:08:24] [main/INFO]: Found 15 dependencies adding them to mods collection [22:08:24] [main/INFO]: Found mod file kuma-api-forge-20.1.9-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@25cd49a4 [22:08:24] [main/INFO]: Found mod file mixinextras-forge-0.3.5.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@25cd49a4 [22:08:24] [main/INFO]: Found mod file caffeine-3.1.8.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@25cd49a4 [22:08:24] [main/INFO]: Found mod file UnRealConfig-core-12.3.4.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@25cd49a4 [22:08:24] [main/INFO]: Found mod file configuration-forge-1.20.1-2.2.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@25cd49a4 [22:08:24] [main/INFO]: Found mod file kfflang-4.11.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@25cd49a4 [22:08:24] [main/INFO]: Found mod file ldlib-forge-1.20.1-1.0.31.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@25cd49a4 [22:08:24] [main/INFO]: Found mod file Registrate-MC1.20-1.3.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@25cd49a4 [22:08:24] [main/INFO]: Found mod file spectrelib-forge-0.13.17+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@25cd49a4 [22:08:24] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@25cd49a4 [22:08:24] [main/INFO]: Found mod file puzzlesaccessapi-forge-8.0.7.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@25cd49a4 [22:08:24] [main/INFO]: Found mod file MixinExtras-0.3.5.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@25cd49a4 [22:08:24] [main/INFO]: Found mod file kfflib-4.11.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@25cd49a4 [22:08:24] [main/INFO]: Found mod file kffmod-4.11.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@25cd49a4 [22:08:24] [main/INFO]: Found mod file UnRealConfig-gson-12.3.4.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@25cd49a4 [22:08:24] [main/INFO]: OptiFineTransformationService.transformers [22:08:24] [main/INFO]: Targets: 412 [22:08:25] [main/INFO]: additionalClassesLocator: [optifine., net.optifine.] [22:08:27] [main/INFO]: Compatibility level set to JAVA_17 [22:08:27] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.3.6, --gameDir, C:\Users\samsc\curseforge\minecraft\Instances\GregTech Community Pack Modern, --assetsDir, C:\Users\samsc\curseforge\minecraft\Install\assets, --uuid, 35eff7ce4ab94080a0d49f21fa7fd08d, --username, U_MEST_GRUSS, --assetIndex, 5, --accessToken, ????????, --clientId, N2E3YWZiNjYtZmNjMi00ZGY4LWIwMTUtNGE1YTMxYmRmYmNk, --xuid, 2535441773991998, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\samsc\curseforge\minecraft\Install\quickPlay\java\1735074499399.json] [22:08:27] [main/INFO]: Loaded configuration file for ModernFix 5.19.7+mc1.20.1: 84 options available, 4 override(s) found [22:08:27] [main/WARN]: Option 'mixin.perf.faster_texture_stitching' overriden (by mods [optifine]) to 'false' [22:08:27] [main/WARN]: Option 'mixin.bugfix.entity_pose_stack' overriden (by mods [optifine]) to 'false' [22:08:27] [main/WARN]: Option 'mixin.perf.thread_priorities' overriden (by mods [smoothboot]) to 'false' [22:08:27] [main/WARN]: Option 'mixin.launch.class_search_cache' overriden (by mods [optifine]) to 'false' [22:08:27] [main/FATAL]: OptiFine detected. Use of ModernFix with OptiFine is not supported due to its impact on launch time and breakage of Forge features. [22:08:27] [main/INFO]: Applying Nashorn fix [22:08:27] [main/INFO]: Applied Forge config corruption patch [22:08:27] [main/INFO]: OptiFine was detected. [22:08:27] [main/INFO]: OptiFabric was NOT detected. [22:08:27] [main/INFO]: Loaded configuration file for Embeddium: 141 options available, 0 override(s) found [22:08:27] [main/INFO]: Searching for graphics cards... [22:08:28] [main/INFO]: Found graphics card: GraphicsAdapterInfo[vendor=NVIDIA, name=NVIDIA GeForce GT 1030, version=DriverVersion=32.0.15.5612] [22:08:28] [main/WARN]: Embeddium has applied one or more workarounds to prevent crashes or other issues on your system: [NVIDIA_THREADED_OPTIMIZATIONS] [22:08:28] [main/WARN]: This is not necessarily an issue, but it may result in certain features or optimizations being disabled. You can sometimes fix these issues by upgrading your graphics driver. [22:08:28] [main/WARN]: Reference map 'mae2.mixins.refmap.json' for mixins.mae2.json could not be read. If this is a development environment you can ignore this message [22:08:28] [main/INFO]: Loading 96 mods:     - ae2 15.3.1-beta     - ae2ct 1.20.1-1.0.4     - ae2wtlib 15.2.3-forge     - alternate_current 1.7.0     - appleskin 2.5.1+mc1.20.1     - architects_palette 1.3.6.1         \-- mixinextras 0.3.5     - architectury 9.2.14     - attributefix 21.0.4     - badpackets 0.4.3     - balm 7.3.10         \-- kuma_api 20.1.9-SNAPSHOT     - bettertags 1.20.1-1.1     - biomeswevegone 1.4.4     - bookshelf 20.2.13     - buildinggadgets2 1.0.7     - clienttweaks 11.1.0     - cloth_config 11.1.136     - clumps 12.0.0.4     - codechickenlib 4.4.0.516     - comforts 6.4.0+1.20.1     - controlling 12.0.2     - corgilib 4.0.3.3     - craftingstation 1.20.1-1.2.3     - craftingtweaks 18.2.5     - curios 5.11.0+1.20.1     - defaultoptions 18.0.1     - elevatorid 1.20.1-lex-1.9     - embeddium 0.3.31+mc1.20.1         \-- rubidium 0.7.1     - emi 1.1.18+1.20.1+forge     - enderstorage 2.11.0.188     - expatternprovider 1.20-1.2.2-forge     - fastleafdecay 32     - fastload 3.4.0     - fastsuite 5.0.1     - ferritecore 6.0.1     - findme 3.2.1     - forge 47.3.6     - fpsreducer 1.20-2.5     - framedblocks 9.3.1     - ftbbackups2 1.0.23     - ftbchunks 2001.3.4     - ftbessentials 2001.2.2     - ftblibrary 2001.2.6     - ftbquests 2001.4.9     - ftbteams 2001.3.0     - ftbultimine 2001.1.5     - ftbxmodcompat 2.1.1     - geckolib 4.4.9     - glodium 1.20-1.5-forge     - gtceu 1.6.1         |-- configuration 2.2.0         \-- ldlib 1.0.31     - hangglider 8.0.1     - iceberg 1.1.25     - inventoryessentials 8.2.6     - inventoryprofilesnext 1.10.11     - itemfilters 2001.1.0-build.59     - jade 11.12.2+forge     - javd 5.0.1+mc1.20.1     - jei 15.20.0.105     - kotlinforforge 4.11.0     - kubejs 2001.6.5-build.16     - libipn 4.0.2     - libx 1.20.1-5.0.14     - lootjs 1.20.1-2.12.0     - mae2 1.4.4     - minecraft 1.20.1     - modelfix 1.15     - modernfix 5.19.7+mc1.20.1     - mousetweaks 2.25.1     - nochatreports 1.20.1-v2.2.2     - ohthetreesyoullgrow 1.20.1-1.3.3     - placebo 8.6.2     - polylib 2000.0.3-build.143     - polymorph 0.49.8+1.20.1         \-- spectrelib 0.13.17+1.20.1     - puzzleslib 8.1.25         \-- puzzlesaccessapi 8.0.7     - rhino 2001.2.3-build.6     - searchables 1.0.3     - smoothboot 0.0.4     - sophisticatedbackpacks 3.20.17.1150     - sophisticatedcore 1.0.1.809     - storagedrawers 12.9.13     - terrablender 3.0.1.7     - toastcontrol 8.0.3     - toolbelt 1.20.02     - torchmaster 20.1.9     - travelanchors 1.20.1-5.0.1     - trenzalore 3.3.10     - waystones 14.1.6     - xaerominimap 24.6.1     - xaeroworldmap 1.39.2     - xtonesreworked 1.0.4     - yeetusexperimentus 2.3.1-build.6+mc1.20.1 [22:08:28] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:08:28] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:08:29] [main/INFO]: bre2el.fpsreducer.mixin.RenderSystemMixin will be applied. [22:08:29] [main/INFO]: bre2el.fpsreducer.mixin.WindowMixin will be applied. [22:08:29] [main/WARN]: Inventory Profiles Next: Doing our own dependency resolving! Because Forge is being Forge....: https://github.com/MinecraftForge/MinecraftForge/issues/9088 [22:08:29] [main/WARN]: Error loading class: de/maxhenkel/easyvillagers/blocks/tileentity/TraderTileentityBase (java.lang.ClassNotFoundException: de.maxhenkel.easyvillagers.blocks.tileentity.TraderTileentityBase) [22:08:29] [main/WARN]: @Mixin target de.maxhenkel.easyvillagers.blocks.tileentity.TraderTileentityBase was not found mixins.ipnext.json:MixinTraderTileEntityBase [22:08:29] [main/WARN]: Error loading class: mezz/modnametooltip/TooltipEventHandler (java.lang.ClassNotFoundException: mezz.modnametooltip.TooltipEventHandler) [22:08:29] [main/WARN]: Error loading class: me/shedaniel/rei/impl/client/ClientHelperImpl (java.lang.ClassNotFoundException: me.shedaniel.rei.impl.client.ClientHelperImpl) [22:08:30] [main/WARN]: Error loading class: journeymap/client/ui/fullscreen/Fullscreen (java.lang.ClassNotFoundException: journeymap.client.ui.fullscreen.Fullscreen) [22:08:30] [main/WARN]: @Mixin target journeymap.client.ui.fullscreen.Fullscreen was not found gtceu.mixins.json:journeymap.FullscreenMixin [22:08:30] [main/WARN]: Error loading class: org/cyclops/integrateddynamics/block/BlockCable (java.lang.ClassNotFoundException: org.cyclops.integrateddynamics.block.BlockCable) [22:08:30] [main/WARN]: @Mixin target org.cyclops.integrateddynamics.block.BlockCable was not found mixins.epp.json:MixinBlockCable [22:08:30] [main/WARN]: Error loading class: blusunrize/immersiveengineering/api/wires/GlobalWireNetwork (java.lang.ClassNotFoundException: blusunrize.immersiveengineering.api.wires.GlobalWireNetwork) [22:08:30] [main/WARN]: @Mixin target blusunrize.immersiveengineering.api.wires.GlobalWireNetwork was not found mixins.epp.json:MixinGlobalWireNetwork [22:08:30] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.5). [22:08:30] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:08:30] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:08:30] [main/INFO]: Mixing client.MixinMinecraft from mixins/common/nochatreports.mixins.json into net.minecraft.client.Minecraft [22:08:31] [main/INFO]: Smooth Boot (Reloaded) config initialized [22:08:31] [main/WARN]: Static binding violation: PRIVATE @Overwrite method m_216202_ in modernfix-forge.mixins.json:perf.tag_id_caching.TagOrElementLocationMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [22:08:32] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:08:32] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:08:32] [main/WARN]: Method overwrite conflict for scheduleRandomTick in corgilib-common.mixins.json:chunk.MixinChunkAccess, previously written by dev.corgitaco.ohthetreesyoullgrow.mixin.chunk.MixinChunkAccess. Skipping method. [22:08:32] [main/WARN]: Method overwrite conflict for getScheduledRandomTicks in corgilib-common.mixins.json:chunk.MixinChunkAccess, previously written by dev.corgitaco.ohthetreesyoullgrow.mixin.chunk.MixinChunkAccess. Skipping method. [22:08:32] [main/WARN]: Static binding violation: PRIVATE @Overwrite method m_172993_ in embeddium.mixins.json:core.render.world.WorldRendererMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded.  
    • Hello, I am reporting an issue with Forge and Neoforge having a black screen even though the game is open and interactable, does anyone know how to fix it? the version is 1.20.1 here is  the exit code: -805306369  
    • That log is from a Fabric modpack, these are the forge forums, so while someone might stumble on this and know, it will likely take considerably longer than if you asked wherever Fabric support is given. I've never used Fabric myself, so don't know where you'd go for help.
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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