Jump to content

Recommended Posts

Posted

Hey sorry for my bad english, i am german. So i am coding a mod where I craft a custom block but when i put the last item in the crafting gui minecraft crashes with a null pointer exception (when you need the crash report just post it)

 

here is  my main class:

 

 

//Variablen

public static final String MODID = "kohlewerk";

   

 

 

 

public static final int GUIMASCHC = 0;

 

List<String> authors = Arrays.asList("Jan");

 

Block blockmaschc = new BlockMaschC();

ItemStack maschc = new ItemStack(blockmaschc);

 

@Instance

public static KohleWerk instance;

 

 

 

@EventHandler

public void preInit(FMLPreInitializationEvent event){

 

 

ModMetadata ModData = event.getModMetadata();

modinfo(ModData);

        GameRegistry.addShapedRecipe(maschc, "XXX",

                                    "XYX",

                                            "ZZZ", 'X', new ItemStack(Blocks.cobblestone), 'Y', new ItemStack(Items.diamond), 'Z', new ItemStack(Items.coal));

 

 

 

}

 

@EventHandler

public void Init(FMLInitializationEvent event){

 

 

GameRegistry.registerBlock(blockmaschc, "maschc");

Item itemfromblock = Item.getItemFromBlock(blockmaschc);

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(itemfromblock, 3, new ModelResourceLocation("kohlewerk:maschc", "inventory"));

 

 

//GuiHandler

 

NetworkRegistry.INSTANCE.registerGuiHandler(instance, new GuiHandler());

 

//TileEntitys

 

GameRegistry.registerTileEntity(TileEntityMaschC.class, "TileEntityMaschC");

 

 

}

 

@EventHandler

public void postInit(FMLPostInitializationEvent event){

 

}

 

public void modinfo(ModMetadata data){

//Modinfos setzten

 

data.autogenerated = false;

data.name = EnumChatFormatting.BLUE +  "" + EnumChatFormatting.BOLD  + "Kohle Werk";

data.authorList = authors;

data.description = "Dieser Mod fügt ein Kohlewerk hinzu mit dem man Erze vervielvältigen kann.";

data.credits = "HyCraftHD";

data.logoFile = "assets/kohlewerk/textures/logo/logo.png";

data.version= "0.1";

}

 

 

public void CraftingOfen(){

 

 

}

 

}

 

I hope you can help me

thanks in advance <3

Jan

 

 

 

Posted

So my code is now this:

 

@Mod(modid = KohleWerk.MODID)

public class KohleWerk {

   

//Variablen

public static final String MODID = "kohlewerk";

   

public static Item koks = new ItemKoks();

 

 

public static final int GUIMASCHC = 0;

 

List<String> authors = Arrays.asList("Jan");

 

Block blockmaschc = new BlockMaschC();

ItemStack maschc = new ItemStack(blockmaschc);

 

@Instance

public static KohleWerk instance;

 

 

 

@EventHandler

public void preInit(FMLPreInitializationEvent event){

 

GameRegistry.registerBlock(blockmaschc, "maschc");

Item itemfromblock = Item.getItemFromBlock(blockmaschc);

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(itemfromblock, 3, new ModelResourceLocation("kohlewerk:maschc", "inventory"));

 

 

 

GameRegistry.registerItem(koks, "koks");

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(koks, 0, new ModelResourceLocation("kohlewerk:koks", "inventory"));

 

 

//GuiHandler

 

NetworkRegistry.INSTANCE.registerGuiHandler(instance, new GuiHandler());

 

//TileEntitys

 

GameRegistry.registerTileEntity(TileEntityMaschC.class, "TileEntityMaschC");

 

 

ModMetadata ModData =  event.getModMetadata();

modinfo(ModData);

 

 

 

}

 

@EventHandler

public void Init(FMLInitializationEvent event){

 

        GameRegistry.addShapedRecipe(maschc, "XXX",

                                    "XYX",

                                            "ZZZ", 'X', Blocks.cobblestone, 'Y',Items.diamond, 'Z', Items.coal);

 

 

}

 

@EventHandler

public void postInit(FMLPostInitializationEvent event){

 

}

 

public void modinfo(ModMetadata data){

//Modinfos setzten

 

data.autogenerated = false;

data.name = EnumChatFormatting.BLUE +  "" + EnumChatFormatting.BOLD  + "Kohle Werk";

data.authorList = authors;

data.description = "Dieser Mod fügt ein Kohlewerk hinzu mit dem man Erze vervielvältigen kann.";

data.credits = "HyCraftHD";

data.logoFile = "assets/kohlewerk/textures/logo/logo.png";

data.version= "0.1";

}

 

 

public void CraftingOfen(){

 

 

}

 

}

 

 

but it still crashes when i craft

 

Posted

After reading what you have done, there is a lot of clean up to do.

 

ItemStack maschc = new ItemStack(blockmaschc);

No.

 

Block blockmaschc = new BlockMaschC();

Should be public static

 

   public void CraftingOfen(){
      
      
   }

?

 

public void modinfo(ModMetadata data){
      //Modinfos setzten
      
      data.autogenerated = false;
      data.name = EnumChatFormatting.BLUE +  "" + EnumChatFormatting.BOLD  + "Kohle Werk";
      data.authorList = authors;
      data.description = "Dieser Mod fügt ein Kohlewerk hinzu mit dem man Erze vervielvältigen kann.";
      data.credits = "HyCraftHD";
      data.logoFile = "assets/kohlewerk/textures/logo/logo.png";
      data.version= "0.1";
   }

Not sure why you do this in a method if you can fill the mcmod.info (I think that was its name)

 

To come to your problem. Replace the reference to the maschc with a new ItemStack(blockmaschc). If that doenst helps post your log and if u changed the code post it also. and please us tags

 

 

Posted

First of all thank you but is still doesnt work so now here`s my main class

@Mod(modid = KohleWerk.MODID)
public class KohleWerk {
    
//Variablen
public static final String MODID = "kohlewerk";
    
public static Item koks = new ItemKoks();


public static final int GUIMASCHC = 0;

List<String> authors = Arrays.asList("Jan");

public static Block blockmaschc = new BlockMaschC();


@Instance
public static KohleWerk instance;

  

@EventHandler
public void preInit(FMLPreInitializationEvent event){


	GameRegistry.addShapedRecipe(new ItemStack(KohleWerk.blockmaschc), "XXX",
                                                                           "XYX",
                                                                           "ZZZ", 'X', Blocks.cobblestone, 'Y',Items.diamond, 'Z', Items.coal);





	//GuiHandler

	NetworkRegistry.INSTANCE.registerGuiHandler(instance, new GuiHandler());

	//TileEntitys

	GameRegistry.registerTileEntity(TileEntityMaschC.class, "TileEntityMaschC");


	ModMetadata ModData =  event.getModMetadata();
	modinfo(ModData);



}

@EventHandler
public void Init(FMLInitializationEvent event){
	GameRegistry.registerBlock(blockmaschc, "maschc");
	Item itemfromblock = Item.getItemFromBlock(blockmaschc);

	GameRegistry.registerItem(koks, "koks");
	Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(koks, 0, new ModelResourceLocation("kohlewerk:koks", "inventory"));



	Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(itemfromblock, 3, new ModelResourceLocation("kohlewerk:maschc", "inventory"));
        

}

@EventHandler
public void postInit(FMLPostInitializationEvent event){

}
   
public void modinfo(ModMetadata data){
	//Modinfos setzten

	data.autogenerated = false;
	data.name = EnumChatFormatting.BLUE +  "" + EnumChatFormatting.BOLD  + "Kohle Werk";
	data.authorList = authors;
	data.description = "Dieser Mod fügt ein Kohlewerk hinzu mit dem man Erze vervielvältigen kann.";
	data.credits = "HyCraftHD";
	data.logoFile = "assets/kohlewerk/textures/logo/logo.png";
	data.version= "0.1";
}



}

i set the mod data in methods becuase i don`t like the mcmod.info file

 

so here`s my crashreport

 

 

java.lang.NullPointerException

at net.minecraft.client.resources.model.ModelBakery.loadModel(ModelBakery.java:270) ~[ModelBakery.class:?]

at net.minecraftforge.client.model.ModelLoader.access$900(ModelLoader.java:71) ~[ModelLoader.class:?]

at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:534) ~[ModelLoader$VanillaLoader.class:?]

at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:92) [ModelLoaderRegistry.class:?]

at net.minecraftforge.client.model.ModelLoader.loadAnyModel(ModelLoader.java:201) [ModelLoader.class:?]

at net.minecraftforge.client.model.ModelLoader.getModel(ModelLoader.java:184) [ModelLoader.class:?]

at net.minecraftforge.client.model.ModelLoader.loadItems(ModelLoader.java:171) [ModelLoader.class:?]

at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:96) [ModelLoader.class:?]

at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:29) [ModelManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:143) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:774) [Minecraft.class:?]

at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:331) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:528) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:356) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_75]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_75]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_75]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_75]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]

at GradleStart.main(Unknown Source) [start/:?]

[17:05:16] [Client thread/INFO]: Created: 512x512 textures-atlas

[17:05:16] [Client thread/ERROR] [FML]: Model definition for location kohlewerk:maschc#inventory not found

[17:05:19] [server thread/INFO]: Starting integrated minecraft server version 1.8

[17:05:19] [server thread/INFO]: Generating keypair

[17:05:19] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance

[17:05:19] [server thread/INFO] [FML]: Applying holder lookups

[17:05:19] [server thread/INFO] [FML]: Holder lookups applied

[17:05:19] [server thread/INFO] [FML]: Loading dimension 0 (debu) (net.minecraft.server.integrated.IntegratedServer@5dbab9df)

[17:05:19] [server thread/INFO] [FML]: Loading dimension 1 (debu) (net.minecraft.server.integrated.IntegratedServer@5dbab9df)

[17:05:19] [server thread/INFO] [FML]: Loading dimension -1 (debu) (net.minecraft.server.integrated.IntegratedServer@5dbab9df)

[17:05:19] [server thread/INFO]: Preparing start region for level 0

[17:05:20] [server thread/INFO]: Changing view distance to 12, from 10

[17:05:21] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2

[17:05:21] [Netty Server IO #1/INFO] [FML]: Client protocol version 2

[17:05:21] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]

[17:05:21] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established

[17:05:21] [server thread/INFO] [FML]: [server thread] Server side modded connection established

[17:05:21] [server thread/INFO]: Player880[local:E:cf26d101] logged in with entity id 287 at (-188.67640487113474, 71.0, 387.89668531842136)

[17:05:21] [server thread/INFO]: Player880 hat das Spiel betreten

[17:05:23] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@2909f424[id=1344ba46-6b08-3a2e-813a-3106d9215e61,name=Player880,properties={},legacy=false]

com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time

at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:65) ~[YggdrasilAuthenticationService.class:?]

at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:158) [YggdrasilMinecraftSessionService.class:?]

at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:53) [YggdrasilMinecraftSessionService$1.class:?]

at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:50) [YggdrasilMinecraftSessionService$1.class:?]

at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3524) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2317) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2280) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2195) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache.get(LocalCache.java:3934) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827) [guava-17.0.jar:?]

at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:148) [YggdrasilMinecraftSessionService.class:?]

at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:138) [skinManager$3.class:?]

at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.7.0_75]

at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.7.0_75]

at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.7.0_75]

at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.7.0_75]

at java.lang.Thread.run(Unknown Source) [?:1.7.0_75]

[17:05:34] [server thread/INFO]: Stopping server

[17:05:34] [server thread/INFO]: Saving players

[17:05:34] [server thread/INFO]: Saving worlds

[17:05:34] [server thread/INFO]: Saving chunks for level 'debu'/Overworld

[17:05:34] [server thread/INFO]: Saving chunks for level 'debu'/Nether

[17:05:34] [server thread/INFO]: Saving chunks for level 'debu'/The End

[17:05:34] [server thread/INFO] [FML]: Unloading dimension 0

[17:05:34] [server thread/INFO] [FML]: Unloading dimension -1

[17:05:34] [server thread/INFO] [FML]: Unloading dimension 1

[17:05:34] [server thread/INFO] [FML]: Applying holder lookups

[17:05:34] [server thread/INFO] [FML]: Holder lookups applied

[17:05:35] [Client thread/FATAL]: Reported exception thrown!

net.minecraft.util.ReportedException: Rendering item

at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1164) ~[EntityRenderer.class:?]

at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1114) ~[Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:376) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_75]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_75]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_75]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_75]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]

at GradleStart.main(Unknown Source) [start/:?]

Caused by: java.lang.NullPointerException

at net.minecraft.item.ItemStack.getMetadata(ItemStack.java:280) ~[itemStack.class:?]

at net.minecraft.client.renderer.ItemModelMesher.getMetadata(ItemModelMesher.java:70) ~[itemModelMesher.class:?]

at net.minecraft.client.renderer.ItemModelMesher.getItemModel(ItemModelMesher.java:43) ~[itemModelMesher.class:?]

at net.minecraft.client.renderer.entity.RenderItem.renderItemIntoGUI(RenderItem.java:363) ~[RenderItem.class:?]

at net.minecraft.client.renderer.entity.RenderItem.renderItemAndEffectIntoGUI(RenderItem.java:414) ~[RenderItem.class:?]

at net.minecraft.client.gui.inventory.GuiContainer.drawSlot(GuiContainer.java:293) ~[GuiContainer.class:?]

at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:116) ~[GuiContainer.class:?]

at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:462) ~[ForgeHooksClient.class:?]

at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1134) ~[EntityRenderer.class:?]

... 11 more

[17:05:35] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:663]: ---- Minecraft Crash Report ----

// This is a token for 1 free hug. Redeem at your nearest Mojangsta: [~~HUG~~]

 

Time: 20.08.15 17:05

Description: Rendering item

 

java.lang.NullPointerException: Rendering item

at net.minecraft.item.ItemStack.getMetadata(ItemStack.java:280)

at net.minecraft.client.renderer.ItemModelMesher.getMetadata(ItemModelMesher.java:70)

at net.minecraft.client.renderer.ItemModelMesher.getItemModel(ItemModelMesher.java:43)

at net.minecraft.client.renderer.entity.RenderItem.renderItemIntoGUI(RenderItem.java:363)

at net.minecraft.client.renderer.entity.RenderItem.renderItemAndEffectIntoGUI(RenderItem.java:414)

at net.minecraft.client.gui.inventory.GuiContainer.drawSlot(GuiContainer.java:293)

at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:116)

at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:462)

at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1134)

at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1114)

at net.minecraft.client.Minecraft.run(Minecraft.java:376)

at net.minecraft.client.main.Main.main(Main.java:117)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

at GradleStart.main(Unknown Source)

 

 

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

---------------------------------------------------------------------------------------

 

-- Head --

Stacktrace:

at net.minecraft.item.ItemStack.getMetadata(ItemStack.java:280)

at net.minecraft.client.renderer.ItemModelMesher.getMetadata(ItemModelMesher.java:70)

at net.minecraft.client.renderer.ItemModelMesher.getItemModel(ItemModelMesher.java:43)

at net.minecraft.client.renderer.entity.RenderItem.renderItemIntoGUI(RenderItem.java:363)

 

-- Item being rendered --

Details:

Item Type: null

Item Aux: ~~ERROR~~ NullPointerException: null

Item NBT: null

Item Foil: ~~ERROR~~ NullPointerException: null

Stacktrace:

at net.minecraft.client.renderer.entity.RenderItem.renderItemAndEffectIntoGUI(RenderItem.java:414)

at net.minecraft.client.gui.inventory.GuiContainer.drawSlot(GuiContainer.java:293)

at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:116)

at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:462)

 

-- Screen render details --

Details:

Screen name: net.minecraft.client.gui.inventory.GuiCrafting

Mouse location: Scaled: (183, 76). Absolute: (367, 327)

Screen size: Scaled: (427, 240). Absolute: (854, 480). Scale factor of 2

 

-- Affected level --

Details:

Level name: MpServer

All players: 1 total; [EntityPlayerSP['Player880'/287, l='MpServer', x=-188,85, y=71,00, z=388,73]]

Chunk stats: MultiplayerChunkCache: 621, 621

Level seed: 0

Level generator: ID 00 - default, ver 1. Features enabled: false

Level generator options:

Level spawn location: -108,00,64,00,252,00 - World: (-108,64,252), Chunk: (at 4,4,12 in -7,15; contains blocks -112,0,240 to -97,255,255), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)

Level time: 27335 game time, 1329 day time

Level dimension: 0

Level storage version: 0x00000 - Unknown?

Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)

Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false

Forced entities: 45 total; [EntityCow['Kuh'/68, l='MpServer', x=-252,59, y=84,00, z=443,69], EntityCow['Kuh'/69, l='MpServer', x=-256,00, y=84,00, z=440,13], EntityCow['Kuh'/64, l='MpServer', x=-245,44, y=105,00, z=313,13], EntityCow['Kuh'/65, l='MpServer', x=-252,03, y=104,00, z=323,13], EntityCow['Kuh'/66, l='MpServer', x=-249,75, y=85,00, z=349,31], EntityCreeper['Creeper'/67, l='MpServer', x=-254,50, y=71,00, z=406,50], EntityCreeper['Creeper'/76, l='MpServer', x=-225,94, y=74,00, z=322,41], EntityCreeper['Creeper'/77, l='MpServer', x=-231,50, y=75,00, z=327,50], EntityCow['Kuh'/78, l='MpServer', x=-237,00, y=105,00, z=333,13], EntityEnderman['Enderman'/79, l='MpServer', x=-230,50, y=78,00, z=346,50], EntityBat['Fledermaus'/134, l='MpServer', x=-167,05, y=20,86, z=317,78], EntityCreeper['Creeper'/75, l='MpServer', x=-233,50, y=75,00, z=328,50], EntityBat['Fledermaus'/155, l='MpServer', x=-152,74, y=37,34, z=309,52], EntityBat['Fledermaus'/156, l='MpServer', x=-134,28, y=26,10, z=406,13], EntityCow['Kuh'/81, l='MpServer', x=-232,28, y=82,00, z=445,22], EntityZombie['Zombie'/157, l='MpServer', x=-128,81, y=41,00, z=415,50], EntityCow['Kuh'/80, l='MpServer', x=-239,44, y=81,00, z=382,63], EntityCow['Kuh'/82, l='MpServer', x=-243,16, y=80,00, z=440,13], EntityCreeper['Creeper'/144, l='MpServer', x=-159,91, y=32,00, z=363,56], EntityZombie['Zombie'/145, l='MpServer', x=-154,50, y=34,00, z=390,50], EntityBat['Fledermaus'/146, l='MpServer', x=-160,54, y=35,98, z=377,79], EntityCreeper['Creeper'/168, l='MpServer', x=-120,50, y=65,00, z=438,50], EntityZombie['Zombie'/110, l='MpServer', x=-194,31, y=28,00, z=325,69], EntitySpider['Spinne'/111, l='MpServer', x=-204,50, y=69,00, z=323,50], EntityZombie['Zombie'/109, l='MpServer', x=-203,50, y=69,00, z=318,50], EntityZombie['Zombie'/167, l='MpServer', x=-109,63, y=64,00, z=443,97], EntitySkeleton['Skelett'/166, l='MpServer', x=-116,22, y=37,00, z=414,44], EntityBat['Fledermaus'/165, l='MpServer', x=-115,97, y=60,10, z=371,31], EntityZombie['Zombie'/164, l='MpServer', x=-117,16, y=17,00, z=354,34], EntityCow['Kuh'/51, l='MpServer', x=-268,47, y=94,00, z=327,16], EntitySkeleton['Skelett'/119, l='MpServer', x=-185,19, y=20,00, z=320,50], EntityCow['Kuh'/50, l='MpServer', x=-268,25, y=89,00, z=315,44], EntitySkeleton['Skelett'/118, l='MpServer', x=-191,56, y=24,00, z=320,84], EntitySkeleton['Skelett'/117, l='MpServer', x=-186,91, y=22,00, z=321,47], EntityPlayerSP['Player880'/287, l='MpServer', x=-188,85, y=71,00, z=388,73], EntityCow['Kuh'/54, l='MpServer', x=-266,81, y=80,00, z=355,28], EntitySkeleton['Skelett'/293, l='MpServer', x=-215,50, y=39,00, z=466,50], EntityCow['Kuh'/53, l='MpServer', x=-268,81, y=80,00, z=356,75], EntityZombie['Zombie'/294, l='MpServer', x=-239,88, y=55,00, z=454,44], EntityZombie['Zombie'/112, l='MpServer', x=-206,50, y=69,00, z=322,50], EntityZombie['Zombie'/59, l='MpServer', x=-259,50, y=28,00, z=444,50], EntityZombie['Zombie'/58, l='MpServer', x=-259,50, y=28,00, z=442,50], EntityEnderman['Enderman'/56, l='MpServer', x=-257,50, y=20,00, z=390,50], EntityZombie['Zombie'/299, l='MpServer', x=-261,50, y=17,00, z=459,50], EntitySkeleton['Skelett'/300, l='MpServer', x=-257,50, y=35,00, z=449,50]]

Retry entities: 0 total; []

Server brand: fml,forge

Server type: Integrated singleplayer server

Stacktrace:

at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:392)

at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2614)

at net.minecraft.client.Minecraft.run(Minecraft.java:398)

at net.minecraft.client.main.Main.main(Main.java:117)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

at GradleStart.main(Unknown Source)

 

 

 

Posted

Seems like there is a problem with ur json's, but that sohuldnt create a crash.. The problem isnt because u are crafting the item it seems like there is something wrong with rendering it..

I am not good at that, if u are lucky TheGreyGhost will take a look and find ur error :b

 

For now. Show ur json's , since minecraft seems to miss them.

 

Also DONT DO THIS

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(itemfromblock, 3, new ModelResourceLocation("kohlewerk:maschc", "inventory"));

U need to do that inside ur proxy, because if u compile the mod and run it on a server it will throw you a ClassNotFound exception.

Rendering stuff is Client ONLY so u need to register the renderer inside ur proxy.

 

Posted

 

Here are my json files

blockstates

{
    "variants": {
        "normal": { "model": "kohlewerk:maschc" }
    }
}

models.item

{
    "parent": "kohlewerk:block/maschc",
    "display": {
        "thirdperson": {
            "rotation": [ 10, -45, 170 ],
            "translation": [ 0, 1.5, -2.75 ],
            "scale": [ 0.375, 0.375, 0.375 ]
        }
    }
}

models.block

{
    "parent": "block/cube",
    "textures": {
    
    
        "particle": "kohlewerk:blocks/maschc_top",
        "up": "kohlewerk:blocks/maschc_top",
        "down": "kohlewerk:blocks/maschc_side",
        "north": "kohlewerk:blocks/maschc_front",
        "south": "kohlewerk:blocks/maschc_side",
        "west": "kohlewerk:blocks/maschc_side",
        "east": "kohlewerk:blocks/maschc_side"
    
    }
}

 

 

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

    • Hi all. I am having trouble running forge. I used to be able to run it, but I tried again recently and it no longer works. When I launch the game, it exits with error code 1. I am on Ubuntu 20.04. Vanilla minecraft works fine as well as optifine. I've ran forge before and even hosted forge servers for my friends. I'm not quite sure what the problem is. I uninstalled forge and reinstalled the version I wanted (1.16.1) but no luck. I know that I haven't given much information to work with, so please let me know what you need.
    • Im running a 1.20.1 Essential server with some friends and every time in every world there are some chunk that, if loaded, the game just freezes and i have to close it wuth task manager. The log (https://paste.ee/p/SAthaLeb) just keeps looping the same things and it never crashes. any help is useful and can give more info if needed, sorry if bad grammar or smt not my first language
    • Welcome to AnarchyyMC, a new Minecraft server with very few rules! Here, you have all the freedom you could wish for on a Minecraft server. The only thing not allowed here is toxic behavior! This is a friendly safe space where people can chat with each other without toxicity. Feel free to have fun with your friends (or alone) and do things that aren't allowed on other non-anarchy servers. Have fun on this server with a pure vanilla experience!   ├Semi Anarchy ├Vanilla Experience ├Friendly/Non-Toxic ├Griefing Allowed     Join now: 🌐IP: mc.anarchyy-mc.xyz 💾 Version: 1.21.4 hope to see you on here soon ;)  
    • ---- Minecraft Crash Report ---- // You should try our sister game, Minceraft! Time: 2025-01-19 11:35:48 Description: mouseClicked event handler com.electronwill.nightconfig.core.io.WritingException: Failed to write (REPLACE_ATOMIC) the config to: \curseforge\minecraft\Instances\All Time\config\sophisticatedcore-common.toml     at MC-BOOTSTRAP/[email protected]/com.electronwill.nightconfig.core.io.ConfigWriter.write(ConfigWriter.java:105) ~[core-3.8.0.jar%23103!/:?] {}     at MC-BOOTSTRAP/[email protected]/com.electronwill.nightconfig.core.io.ConfigWriter.write(ConfigWriter.java:76) ~[core-3.8.0.jar%23103!/:?] {}     at MC-BOOTSTRAP/[email protected]/net.neoforged.fml.config.ConfigTracker.writeConfig(ConfigTracker.java:272) ~[loader-4.0.35.jar%23122!/:4.0] {}     at MC-BOOTSTRAP/[email protected]/net.neoforged.fml.config.LoadedConfig.save(LoadedConfig.java:17) ~[loader-4.0.35.jar%23122!/:4.0] {}     at TRANSFORMER/[email protected]/net.neoforged.neoforge.common.ModConfigSpec.save(ModConfigSpec.java:179) ~[neoforge-21.1.97-universal.jar%23369!/:?] {re:classloading}     at TRANSFORMER/[email protected]/net.neoforged.neoforge.common.ModConfigSpec$ConfigValue.save(ModConfigSpec.java:1257) ~[neoforge-21.1.97-universal.jar%23369!/:?] {re:mixin,re:classloading}     at TRANSFORMER/[email protected]/net.p3pp3rf1y.sophisticatedcore.Config$Common$EnabledItems.addEnabledItemToConfig(Config.java:96) ~[sophisticatedcore-1.21.1-1.1.4.838.jar%23538!/:1.21.1-1.1.4.838] {re:classloading}     at TRANSFORMER/[email protected]/net.p3pp3rf1y.sophisticatedcore.Config$Common$EnabledItems.lambda$isItemEnabled$0(Config.java:87) ~[sophisticatedcore-1.21.1-1.1.4.838.jar%23538!/:1.21.1-1.1.4.838] {re:classloading}     at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1708) ~[?:?] {re:mixin}     at TRANSFORMER/[email protected]/net.p3pp3rf1y.sophisticatedcore.Config$Common$EnabledItems.isItemEnabled(Config.java:86) ~[sophisticatedcore-1.21.1-1.1.4.838.jar%23538!/:1.21.1-1.1.4.838] {re:classloading}     at TRANSFORMER/[email protected]/net.p3pp3rf1y.sophisticatedcore.crafting.ItemEnabledCondition.test(ItemEnabledCondition.java:24) ~[sophisticatedcore-1.21.1-1.1.4.838.jar%23538!/:1.21.1-1.1.4.838] {re:classloading}     at TRANSFORMER/[email protected]/net.neoforged.neoforge.common.conditions.ConditionalOps$ConditionalDecoder.lambda$decode$3(ConditionalOps.java:207) ~[neoforge-21.1.97-universal.jar%23369!/:?] {re:classloading}     at java.base/java.util.stream.MatchOps$1MatchSink.accept(MatchOps.java:90) ~[?:?] {}     at java.base/java.util.AbstractList$RandomAccessSpliterator.tryAdvance(AbstractList.java:708) ~[?:?] {}     at java.base/java.util.stream.ReferencePipeline.forEachWithCancel(ReferencePipeline.java:129) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.copyIntoWithCancel(AbstractPipeline.java:527) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:513) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] {}     at java.base/java.util.stream.MatchOps$MatchOp.evaluateSequential(MatchOps.java:230) ~[?:?] {}     at java.base/java.util.stream.MatchOps$MatchOp.evaluateSequential(MatchOps.java:196) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] {}     at java.base/java.util.stream.ReferencePipeline.allMatch(ReferencePipeline.java:637) ~[?:?] {}     at TRANSFORMER/[email protected]/net.neoforged.neoforge.common.conditions.ConditionalOps$ConditionalDecoder.lambda$decode$7(ConditionalOps.java:207) ~[neoforge-21.1.97-universal.jar%23369!/:?] {re:classloading}     at MC-BOOTSTRAP/[email protected]/com.mojang.serialization.DataResult$Success.flatMap(DataResult.java:201) ~[datafixerupper-8.0.16.jar%23142!/:?] {}     at TRANSFORMER/[email protected]/net.neoforged.neoforge.common.conditions.ConditionalOps$ConditionalDecoder.lambda$decode$8(ConditionalOps.java:204) ~[neoforge-21.1.97-universal.jar%23369!/:?] {re:classloading}     at MC-BOOTSTRAP/[email protected]/com.mojang.serialization.DataResult$Success.flatMap(DataResult.java:201) ~[datafixerupper-8.0.16.jar%23142!/:?] {}     at TRANSFORMER/[email protected]/net.neoforged.neoforge.common.conditions.ConditionalOps$ConditionalDecoder.lambda$decode$9(ConditionalOps.java:200) ~[neoforge-21.1.97-universal.jar%23369!/:?] {re:classloading}     at MC-BOOTSTRAP/[email protected]/com.mojang.serialization.DataResult$Success.map(DataResult.java:175) ~[datafixerupper-8.0.16.jar%23142!/:?] {}     at TRANSFORMER/[email protected]/net.neoforged.neoforge.common.conditions.ConditionalOps$ConditionalDecoder.decode(ConditionalOps.java:193) ~[neoforge-21.1.97-universal.jar%23369!/:?] {re:classloading}     at MC-BOOTSTRAP/[email protected]/com.mojang.serialization.Codec$2.decode(Codec.java:75) ~[datafixerupper-8.0.16.jar%23142!/:?] {}     at MC-BOOTSTRAP/[email protected]/com.mojang.serialization.Decoder.parse(Decoder.java:18) ~[datafixerupper-8.0.16.jar%23142!/:?] {re:mixin}     at TRANSFORMER/[email protected]/net.minecraft.world.item.crafting.RecipeManager.apply(RecipeManager.java:60) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:sawmill.mixins.json:RecipeManagerMixin from mod sawmill,pl:mixin:APP:bookshelf.mixins.json:access.level.AccessorRecipeManager from mod bookshelf,pl:mixin:APP:bookshelf.mixins.json:patch.level.MixinRecipeManager from mod bookshelf,pl:mixin:APP:owo.mixins.json:recipe_remainders.RecipeManagerMixin from mod owo,pl:mixin:APP:modernfix-neoforge.mixins.json:perf.datapack_reload_exceptions.RecipeManagerMixin from mod modernfix,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.world.item.crafting.RecipeManager.apply(RecipeManager.java:36) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:sawmill.mixins.json:RecipeManagerMixin from mod sawmill,pl:mixin:APP:bookshelf.mixins.json:access.level.AccessorRecipeManager from mod bookshelf,pl:mixin:APP:bookshelf.mixins.json:patch.level.MixinRecipeManager from mod bookshelf,pl:mixin:APP:owo.mixins.json:recipe_remainders.RecipeManagerMixin from mod owo,pl:mixin:APP:modernfix-neoforge.mixins.json:perf.datapack_reload_exceptions.RecipeManagerMixin from mod modernfix,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimplePreparableReloadListener.lambda$reload$1(SimplePreparableReloadListener.java:19) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,re:classloading,pl:mixin:APP:moonlight.mixins.json:ConditionHackMixin from mod moonlight,pl:mixin:A}     at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718) ~[?:?] {}     at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {}     at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.lambda$new$3(SimpleReloadInstance.java:69) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,re:classloading,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.SimpleReloadInstanceMixin from mod modernfix,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:148) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin from mod modernfix,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:23) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,re:computing_frames,re:classloading}     at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:122) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin from mod modernfix,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:132) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin from mod modernfix,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.managedBlock(Minecraft.java:4016) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:owo.mixins.json:MinecraftClientMixin from mod owo,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-neoforge.mixins.json:feature.measure_time.MinecraftMixin_Forge from mod modernfix,pl:mixin:APP:pickupnotifier.common.mixins.json:client.MinecraftMixin from mod pickupnotifier,pl:mixin:APP:fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric_screen_api_v1,pl:mixin:APP:supplementaries-common.mixins.json:MinecraftMixin from mod supplementaries,pl:mixin:APP:resourcefulconfig.mixins.json:client.MinecraftMixin from mod resourcefulconfig,pl:mixin:APP:accessories-common.mixins.json:client.MinecraftMixin from mod accessories,pl:mixin:APP:glitchcore.mixins.json:client.MixinMinecraft from mod glitchcore,pl:mixin:APP:prism.mixins.json:MinecraftMixin from mod prism,pl:mixin:APP:bookshelf.mixins.json:access.client.AccessorMinecraft from mod bookshelf,pl:mixin:APP:konkrete.mixins.json:client.MixinMinecraft from mod konkrete,pl:mixin:APP:architectury.mixins.json:MixinMinecraft from mod architectury,pl:mixin:APP:monolib.mixins.json:MinecraftMixin from mod monolib,pl:mixin:APP:neoforge-more_bows_and_arrows.mixins.json:MinecraftMixin from mod more_bows_and_arrows,pl:mixin:APP:neoforge-stackable_stew_and_soup.mixins.json:MinecraftMixin from mod stackable_stew_and_soup,pl:mixin:APP:neoforge-eat_an_omelette.mixins.json:MinecraftMixin from mod eat_an_omelette,pl:mixin:APP:neoforge-longer_following_time.mixins.json:MinecraftMixin from mod longer_following_time,pl:mixin:APP:fabric-networking-api-v1.client.mixins.json:accessor.MinecraftClientAccessor from mod fabric_networking_api_v1,pl:mixin:APP:owo.mixins.json:ui.MinecraftClientMixin from mod owo,pl:mixin:APP:journeymap.mixins.json:client.MinecraftMixin from mod journeymap,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin from mod moonlight,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin from mod iceberg,pl:mixin:APP:modernfix-common.mixins.json:feature.remove_telemetry.MinecraftMixin_Telemetry from mod modernfix,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.client.gui.screens.worldselection.CreateWorldScreen.openFresh(CreateWorldScreen.java:139) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.CreateWorldScreenMixin from mod modernfix,pl:mixin:APP:modernfix-neoforge.mixins.json:bugfix.extra_experimental_screen.CreateWorldScreenMixin from mod modernfix,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.client.gui.screens.worldselection.WorldSelectionList.loadLevels(WorldSelectionList.java:192) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:classloading,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.client.gui.screens.worldselection.WorldSelectionList.<init>(WorldSelectionList.java:111) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:classloading,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.client.gui.screens.worldselection.SelectWorldScreen.init(SelectWorldScreen.java:51) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:classloading}     at TRANSFORMER/[email protected]/net.minecraft.client.gui.screens.Screen.init(Screen.java:317) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:fabric-screen-api-v1.mixins.json:ScreenMixin from mod fabric_screen_api_v1,pl:mixin:APP:balm.neoforge.mixins.json:ScreenAccessor from mod balm,pl:mixin:APP:fabric-screen-api-v1.mixins.json:ScreenAccessor from mod fabric_screen_api_v1,pl:mixin:APP:konkrete.mixins.json:client.IMixinScreen from mod konkrete,pl:mixin:APP:patchouli_xplat.mixins.json:client.AccessorScreen from mod patchouli,pl:mixin:APP:refurbished_furniture.common.mixins.json:client.ScreenAccessor from mod refurbished_furniture,pl:mixin:APP:owo.mixins.json:ScreenAccessor from mod owo,pl:mixin:APP:owo.mixins.json:ui.ScreenMixin from mod owo,pl:mixin:APP:journeymap.mixins.json:client.ScreenAccessor from mod journeymap,pl:mixin:APP:iceberg.mixins.json:ScreenMixin from mod iceberg,pl:mixin:APP:equipmentcompare.mixins.json:ScreenMixin from mod equipmentcompare,pl:mixin:APP:owo.mixins.json:ui.layers.ScreenMixin from mod owo,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.setScreen(Minecraft.java:1057) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:owo.mixins.json:MinecraftClientMixin from mod owo,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-neoforge.mixins.json:feature.measure_time.MinecraftMixin_Forge from mod modernfix,pl:mixin:APP:pickupnotifier.common.mixins.json:client.MinecraftMixin from mod pickupnotifier,pl:mixin:APP:fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric_screen_api_v1,pl:mixin:APP:supplementaries-common.mixins.json:MinecraftMixin from mod supplementaries,pl:mixin:APP:resourcefulconfig.mixins.json:client.MinecraftMixin from mod resourcefulconfig,pl:mixin:APP:accessories-common.mixins.json:client.MinecraftMixin from mod accessories,pl:mixin:APP:glitchcore.mixins.json:client.MixinMinecraft from mod glitchcore,pl:mixin:APP:prism.mixins.json:MinecraftMixin from mod prism,pl:mixin:APP:bookshelf.mixins.json:access.client.AccessorMinecraft from mod bookshelf,pl:mixin:APP:konkrete.mixins.json:client.MixinMinecraft from mod konkrete,pl:mixin:APP:architectury.mixins.json:MixinMinecraft from mod architectury,pl:mixin:APP:monolib.mixins.json:MinecraftMixin from mod monolib,pl:mixin:APP:neoforge-more_bows_and_arrows.mixins.json:MinecraftMixin from mod more_bows_and_arrows,pl:mixin:APP:neoforge-stackable_stew_and_soup.mixins.json:MinecraftMixin from mod stackable_stew_and_soup,pl:mixin:APP:neoforge-eat_an_omelette.mixins.json:MinecraftMixin from mod eat_an_omelette,pl:mixin:APP:neoforge-longer_following_time.mixins.json:MinecraftMixin from mod longer_following_time,pl:mixin:APP:fabric-networking-api-v1.client.mixins.json:accessor.MinecraftClientAccessor from mod fabric_networking_api_v1,pl:mixin:APP:owo.mixins.json:ui.MinecraftClientMixin from mod owo,pl:mixin:APP:journeymap.mixins.json:client.MinecraftMixin from mod journeymap,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin from mod moonlight,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin from mod iceberg,pl:mixin:APP:modernfix-common.mixins.json:feature.remove_telemetry.MinecraftMixin_Telemetry from mod modernfix,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.client.gui.screens.TitleScreen.lambda$createNormalMenuOptions$7(TitleScreen.java:161) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:monolib.neoforge.mixins.json:NeoForgeTitleScreenMixin from mod monolib,pl:mixin:APP:neoforge-more_bows_and_arrows.neoforge.mixins.json:NeoForgeTitleScreenMixin from mod more_bows_and_arrows,pl:mixin:APP:neoforge-stackable_stew_and_soup.neoforge.mixins.json:NeoForgeTitleScreenMixin from mod stackable_stew_and_soup,pl:mixin:APP:neoforge-eat_an_omelette.neoforge.mixins.json:NeoForgeTitleScreenMixin from mod eat_an_omelette,pl:mixin:APP:neoforge-longer_following_time.neoforge.mixins.json:NeoForgeTitleScreenMixin from mod longer_following_time,pl:mixin:APP:neoforge-new_shield_variants.neoforge.mixins.json:NeoForgeTitleScreenMixin from mod new_shield_variants,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.client.gui.components.Button.onPress(Button.java:41) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:owo.mixins.json:ui.access.ButtonWidgetAccessor from mod owo,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.client.gui.components.AbstractButton.onClick(AbstractButton.java:47) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:accessories-common.mixins.json:client.AbstractButtonMixin from mod accessories,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.neoforged.neoforge.client.extensions.IAbstractWidgetExtension.onClick(IAbstractWidgetExtension.java:36) ~[neoforge-21.1.97-universal.jar%23369!/:?] {re:mixin,re:classloading}     at TRANSFORMER/[email protected]/net.minecraft.client.gui.components.AbstractWidget.mouseClicked(AbstractWidget.java:144) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:accessories-common.mixins.json:client.owo.ComponentStubMixin from mod accessories,pl:mixin:APP:konkrete.mixins.json:client.IMixinAbstractWidget from mod konkrete,pl:mixin:APP:owo.mixins.json:ui.ClickableWidgetMixin from mod owo,pl:mixin:APP:owo.mixins.json:ui.access.ClickableWidgetAccessor from mod owo,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.client.gui.components.events.ContainerEventHandler.mouseClicked(ContainerEventHandler.java:38) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:computing_frames,re:mixin,re:classloading}     at TRANSFORMER/[email protected]/net.minecraft.client.gui.screens.TitleScreen.mouseClicked(TitleScreen.java:340) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:monolib.neoforge.mixins.json:NeoForgeTitleScreenMixin from mod monolib,pl:mixin:APP:neoforge-more_bows_and_arrows.neoforge.mixins.json:NeoForgeTitleScreenMixin from mod more_bows_and_arrows,pl:mixin:APP:neoforge-stackable_stew_and_soup.neoforge.mixins.json:NeoForgeTitleScreenMixin from mod stackable_stew_and_soup,pl:mixin:APP:neoforge-eat_an_omelette.neoforge.mixins.json:NeoForgeTitleScreenMixin from mod eat_an_omelette,pl:mixin:APP:neoforge-longer_following_time.neoforge.mixins.json:NeoForgeTitleScreenMixin from mod longer_following_time,pl:mixin:APP:neoforge-new_shield_variants.neoforge.mixins.json:NeoForgeTitleScreenMixin from mod new_shield_variants,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.client.MouseHandler.lambda$onPress$0(MouseHandler.java:98) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.neoforge.mixins.json:MouseHandlerAccessor from mod balm,pl:mixin:APP:supplementaries-common.mixins.json:MouseHandlerMixin from mod supplementaries,pl:mixin:APP:corgilib-common.mixins.json:client.MixinMouseHandler from mod corgilib,pl:mixin:APP:konkrete.mixins.json:client.IMixinMouseHandler from mod konkrete,pl:mixin:APP:konkrete.mixins.json:client.MixinMouseHandler from mod konkrete,pl:mixin:APP:owo.mixins.json:ui.layers.MouseMixin from mod owo,pl:mixin:APP:justzoom.mixins.json:client.MixinMouseHandler from mod justzoom,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.client.gui.screens.Screen.wrapScreenError(Screen.java:451) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:fabric-screen-api-v1.mixins.json:ScreenMixin from mod fabric_screen_api_v1,pl:mixin:APP:balm.neoforge.mixins.json:ScreenAccessor from mod balm,pl:mixin:APP:fabric-screen-api-v1.mixins.json:ScreenAccessor from mod fabric_screen_api_v1,pl:mixin:APP:konkrete.mixins.json:client.IMixinScreen from mod konkrete,pl:mixin:APP:patchouli_xplat.mixins.json:client.AccessorScreen from mod patchouli,pl:mixin:APP:refurbished_furniture.common.mixins.json:client.ScreenAccessor from mod refurbished_furniture,pl:mixin:APP:owo.mixins.json:ScreenAccessor from mod owo,pl:mixin:APP:owo.mixins.json:ui.ScreenMixin from mod owo,pl:mixin:APP:journeymap.mixins.json:client.ScreenAccessor from mod journeymap,pl:mixin:APP:iceberg.mixins.json:ScreenMixin from mod iceberg,pl:mixin:APP:equipmentcompare.mixins.json:ScreenMixin from mod equipmentcompare,pl:mixin:APP:owo.mixins.json:ui.layers.ScreenMixin from mod owo,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.client.MouseHandler.onPress(MouseHandler.java:95) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.neoforge.mixins.json:MouseHandlerAccessor from mod balm,pl:mixin:APP:supplementaries-common.mixins.json:MouseHandlerMixin from mod supplementaries,pl:mixin:APP:corgilib-common.mixins.json:client.MixinMouseHandler from mod corgilib,pl:mixin:APP:konkrete.mixins.json:client.IMixinMouseHandler from mod konkrete,pl:mixin:APP:konkrete.mixins.json:client.MixinMouseHandler from mod konkrete,pl:mixin:APP:owo.mixins.json:ui.layers.MouseMixin from mod owo,pl:mixin:APP:justzoom.mixins.json:client.MixinMouseHandler from mod justzoom,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.client.MouseHandler.lambda$setup$4(MouseHandler.java:202) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.neoforge.mixins.json:MouseHandlerAccessor from mod balm,pl:mixin:APP:supplementaries-common.mixins.json:MouseHandlerMixin from mod supplementaries,pl:mixin:APP:corgilib-common.mixins.json:client.MixinMouseHandler from mod corgilib,pl:mixin:APP:konkrete.mixins.json:client.IMixinMouseHandler from mod konkrete,pl:mixin:APP:konkrete.mixins.json:client.MixinMouseHandler from mod konkrete,pl:mixin:APP:owo.mixins.json:ui.layers.MouseMixin from mod owo,pl:mixin:APP:justzoom.mixins.json:client.MixinMouseHandler from mod justzoom,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:98) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin from mod modernfix,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.client.MouseHandler.lambda$setup$5(MouseHandler.java:202) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.neoforge.mixins.json:MouseHandlerAccessor from mod balm,pl:mixin:APP:supplementaries-common.mixins.json:MouseHandlerMixin from mod supplementaries,pl:mixin:APP:corgilib-common.mixins.json:client.MixinMouseHandler from mod corgilib,pl:mixin:APP:konkrete.mixins.json:client.IMixinMouseHandler from mod konkrete,pl:mixin:APP:konkrete.mixins.json:client.MixinMouseHandler from mod konkrete,pl:mixin:APP:owo.mixins.json:ui.layers.MouseMixin from mod owo,pl:mixin:APP:justzoom.mixins.json:client.MixinMouseHandler from mod justzoom,pl:mixin:A,pl:runtimedistcleaner:A}     at MC-BOOTSTRAP/[email protected]+5/org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:43) ~[lwjgl-glfw-3.3.3.jar%23165!/:build 5] {}     at MC-BOOTSTRAP/[email protected]+5/org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.3.3.jar%23177!/:build 5] {}     at MC-BOOTSTRAP/[email protected]+5/org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3509) ~[lwjgl-glfw-3.3.3.jar%23165!/:build 5] {}     at TRANSFORMER/[email protected]/com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:162) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:owo.mixins.json:ui.RenderSystemMixin from mod owo,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.runTick(Minecraft.java:1220) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:owo.mixins.json:MinecraftClientMixin from mod owo,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-neoforge.mixins.json:feature.measure_time.MinecraftMixin_Forge from mod modernfix,pl:mixin:APP:pickupnotifier.common.mixins.json:client.MinecraftMixin from mod pickupnotifier,pl:mixin:APP:fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric_screen_api_v1,pl:mixin:APP:supplementaries-common.mixins.json:MinecraftMixin from mod supplementaries,pl:mixin:APP:resourcefulconfig.mixins.json:client.MinecraftMixin from mod resourcefulconfig,pl:mixin:APP:accessories-common.mixins.json:client.MinecraftMixin from mod accessories,pl:mixin:APP:glitchcore.mixins.json:client.MixinMinecraft from mod glitchcore,pl:mixin:APP:prism.mixins.json:MinecraftMixin from mod prism,pl:mixin:APP:bookshelf.mixins.json:access.client.AccessorMinecraft from mod bookshelf,pl:mixin:APP:konkrete.mixins.json:client.MixinMinecraft from mod konkrete,pl:mixin:APP:architectury.mixins.json:MixinMinecraft from mod architectury,pl:mixin:APP:monolib.mixins.json:MinecraftMixin from mod monolib,pl:mixin:APP:neoforge-more_bows_and_arrows.mixins.json:MinecraftMixin from mod more_bows_and_arrows,pl:mixin:APP:neoforge-stackable_stew_and_soup.mixins.json:MinecraftMixin from mod stackable_stew_and_soup,pl:mixin:APP:neoforge-eat_an_omelette.mixins.json:MinecraftMixin from mod eat_an_omelette,pl:mixin:APP:neoforge-longer_following_time.mixins.json:MinecraftMixin from mod longer_following_time,pl:mixin:APP:fabric-networking-api-v1.client.mixins.json:accessor.MinecraftClientAccessor from mod fabric_networking_api_v1,pl:mixin:APP:owo.mixins.json:ui.MinecraftClientMixin from mod owo,pl:mixin:APP:journeymap.mixins.json:client.MinecraftMixin from mod journeymap,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin from mod moonlight,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin from mod iceberg,pl:mixin:APP:modernfix-common.mixins.json:feature.remove_telemetry.MinecraftMixin_Telemetry from mod modernfix,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.run(Minecraft.java:807) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:owo.mixins.json:MinecraftClientMixin from mod owo,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-neoforge.mixins.json:feature.measure_time.MinecraftMixin_Forge from mod modernfix,pl:mixin:APP:pickupnotifier.common.mixins.json:client.MinecraftMixin from mod pickupnotifier,pl:mixin:APP:fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric_screen_api_v1,pl:mixin:APP:supplementaries-common.mixins.json:MinecraftMixin from mod supplementaries,pl:mixin:APP:resourcefulconfig.mixins.json:client.MinecraftMixin from mod resourcefulconfig,pl:mixin:APP:accessories-common.mixins.json:client.MinecraftMixin from mod accessories,pl:mixin:APP:glitchcore.mixins.json:client.MixinMinecraft from mod glitchcore,pl:mixin:APP:prism.mixins.json:MinecraftMixin from mod prism,pl:mixin:APP:bookshelf.mixins.json:access.client.AccessorMinecraft from mod bookshelf,pl:mixin:APP:konkrete.mixins.json:client.MixinMinecraft from mod konkrete,pl:mixin:APP:architectury.mixins.json:MixinMinecraft from mod architectury,pl:mixin:APP:monolib.mixins.json:MinecraftMixin from mod monolib,pl:mixin:APP:neoforge-more_bows_and_arrows.mixins.json:MinecraftMixin from mod more_bows_and_arrows,pl:mixin:APP:neoforge-stackable_stew_and_soup.mixins.json:MinecraftMixin from mod stackable_stew_and_soup,pl:mixin:APP:neoforge-eat_an_omelette.mixins.json:MinecraftMixin from mod eat_an_omelette,pl:mixin:APP:neoforge-longer_following_time.mixins.json:MinecraftMixin from mod longer_following_time,pl:mixin:APP:fabric-networking-api-v1.client.mixins.json:accessor.MinecraftClientAccessor from mod fabric_networking_api_v1,pl:mixin:APP:owo.mixins.json:ui.MinecraftClientMixin from mod owo,pl:mixin:APP:journeymap.mixins.json:client.MinecraftMixin from mod journeymap,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin from mod moonlight,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin from mod iceberg,pl:mixin:APP:modernfix-common.mixins.json:feature.remove_telemetry.MinecraftMixin_Telemetry from mod modernfix,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.client.main.Main.main(Main.java:230) ~[client-1.21.1-20240808.144430-srg.jar%23368!/:?] {re:classloading,pl:runtimedistcleaner:A}     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?] {}     at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?] {re:mixin}     at MC-BOOTSTRAP/[email protected]/net.neoforged.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:136) ~[loader-4.0.35.jar%23122!/:4.0] {}     at MC-BOOTSTRAP/[email protected]/net.neoforged.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:124) ~[loader-4.0.35.jar%23122!/:4.0] {}     at MC-BOOTSTRAP/[email protected]/net.neoforged.fml.loading.targets.CommonClientLaunchHandler.runService(CommonClientLaunchHandler.java:32) ~[loader-4.0.35.jar%23122!/:4.0] {}     at MC-BOOTSTRAP/[email protected]/net.neoforged.fml.loading.targets.CommonLaunchHandler.lambda$launchService$4(CommonLaunchHandler.java:118) ~[loader-4.0.35.jar%23122!/:4.0] {}     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-11.0.4.jar%23126!/:?] {}     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-11.0.4.jar%23126!/:?] {}     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-11.0.4.jar%23126!/:?] {}     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:103) [modlauncher-11.0.4.jar%23126!/:?] {}     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:74) [modlauncher-11.0.4.jar%23126!/:?] {}     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-11.0.4.jar%23126!/:?] {}     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-11.0.4.jar%23126!/:?] {}     at [email protected]/cpw.mods.bootstraplauncher.BootstrapLauncher.run(BootstrapLauncher.java:210) [bootstraplauncher-2.0.2.jar:?] {}     at [email protected]/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:69) [bootstraplauncher-2.0.2.jar:?] {} Caused by: java.nio.file.AccessDeniedException: \curseforge\minecraft\Instances\All Time\config\sophisticatedcore-common.toml.new.tmp -> \curseforge\minecraft\Instances\All Time\config\sophisticatedcore-common.toml     at java.base/sun.nio.fs.WindowsException.translateToIOException(WindowsException.java:89) ~[?:?] {}     at java.base/sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:103) ~[?:?] {}     at java.base/sun.nio.fs.WindowsFileCopy.move(WindowsFileCopy.java:328) ~[?:?] {}     at java.base/sun.nio.fs.WindowsFileSystemProvider.move(WindowsFileSystemProvider.java:291) ~[?:?] {}     at java.base/java.nio.file.Files.move(Files.java:1430) ~[?:?] {}     at MC-BOOTSTRAP/[email protected]/com.electronwill.nightconfig.core.io.ConfigWriter.write(ConfigWriter.java:92) ~[core-3.8.0.jar%23103!/:?] {}     ... 82 more
  • Topics

×
×
  • Create New...

Important Information

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