Jump to content

Recommended Posts

Posted

In my ClientProxy class I register a keybinding as so, and everything works as expected...

 

public ClientProxy()
{
boolean[] repeatFalse = {false};
        KeyBinding[] key_K = {new KeyBinding("Distance Measurer Toggle", 	Keyboard.KEY_K)};
KeyBindingRegistry.registerKeyBinding(new DistanceMeasurerKeyHandler(key_K, repeatFalse));
}

 

...but if I change the hotkey from "K" to anything else in the Options > Controls menu then the change isn't saved after I restart Minecraft. I noticed that in the

options.txt

file it shows my custom keybinding, but it also gets erased sometimes.

 

Any ideas?

 

 

2013-07-16 18:06:02 [iNFO] [ForgeModLoader] Forge Mod Loader version 6.2.19.789 for Minecraft 1.6.2 loading

2013-07-16 18:06:02 [iNFO] [ForgeModLoader] Java is Java HotSpot 64-Bit Server VM, version 1.7.0_21, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7

2013-07-16 18:06:02 [FINE] [ForgeModLoader] Java classpath at launch is C:\Users\leep\Desktop\forge\mcp\eclipse\Minecraft\bin;C:\Users\leep\Desktop\forge\mcp\jars\libraries\org\ow2\asm\asm-all\4.1\asm-all-4.1.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\net\minecraft\launchwrapper\1.3\launchwrapper-1.3.jar;C:\Users\leep\Desktop\forge\mcp\jars\versions\1.6.1\1.6.1.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\lzma\lzma\0.0.1\lzma-0.0.1.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\net\sf\jopt-simple\jopt-simple\4.5\jopt-simple-4.5.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\com\paulscode\codecjorbis\20101023\codecjorbis-20101023.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\com\paulscode\codecwav\20101023\codecwav-20101023.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\com\paulscode\libraryjavasound\20101123\libraryjavasound-20101123.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\com\paulscode\librarylwjglopenal\20100824\librarylwjglopenal-20100824.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\com\paulscode\soundsystem\20120107\soundsystem-20120107.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\argo\argo\2.25_fixed\argo-2.25_fixed.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\org\bouncycastle\bcprov-jdk15on\1.47\bcprov-jdk15on-1.47.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\com\google\guava\guava\14.0\guava-14.0.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\org\apache\commons\commons-lang3\3.1\commons-lang3-3.1.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\commons-io\commons-io\2.4\commons-io-2.4.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\net\java\jutils\jutils\1.0.0\jutils-1.0.0.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\com\google\code\gson\gson\2.2.2\gson-2.2.2.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\org\lwjgl\lwjgl\lwjgl\2.9.0\lwjgl-2.9.0.jar;C:\Users\leep\Desktop\forge\mcp\jars\libraries\org\lwjgl\lwjgl\lwjgl_util\2.9.0\lwjgl_util-2.9.0.jar

2013-07-16 18:06:02 [FINE] [ForgeModLoader] Java library path at launch is C:\Users\leep\Desktop\forge\mcp\jars\versions\1.6.1\1.6.1-natives;C:\Users\leep\Desktop\forge\mcp\jars\versions\1.6.1\1.6.1-natives;C:\Users\leep\Desktop\forge\mcp\jars\versions\1.6.1\1.6.1-natives

2013-07-16 18:06:02 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

2013-07-16 18:06:02 [FINEST] [ForgeModLoader] Adding coremod for loading cpw.mods.fml.relauncher.FMLCorePlugin

2013-07-16 18:06:02 [FINEST] [ForgeModLoader] Adding coremod for loading net.minecraftforge.classloading.FMLForgePlugin

2013-07-16 18:06:02 [FINE] [ForgeModLoader] All core mods are successfully located

2013-07-16 18:06:02 [FINE] [ForgeModLoader] Discovering coremods

2013-07-16 18:06:02 [FINEST] [ForgeModLoader] Registering transformer cpw.mods.fml.common.asm.transformers.PatchingTransformer

2013-07-16 18:06:02 [FINEST] [ForgeModLoader] Registering transformer cpw.mods.fml.common.asm.transformers.AccessTransformer

2013-07-16 18:06:02 [iNFO] [sTDOUT] Loaded 39 rules from AccessTransformer config file fml_at.cfg

2013-07-16 18:06:02 [FINEST] [ForgeModLoader] Registering transformer cpw.mods.fml.common.asm.transformers.MarkerTransformer

2013-07-16 18:06:02 [FINEST] [ForgeModLoader] Registering transformer cpw.mods.fml.common.asm.transformers.SideTransformer

2013-07-16 18:06:02 [FINEST] [ForgeModLoader] Registering transformer net.minecraftforge.transformers.ForgeAccessTransformer

2013-07-16 18:06:02 [iNFO] [sTDOUT] Loaded 107 rules from AccessTransformer config file forge_at.cfg

2013-07-16 18:06:02 [FINEST] [ForgeModLoader] Registering transformer net.minecraftforge.transformers.EventTransformer

2013-07-16 18:06:02 [FINE] [ForgeModLoader] Running coremod plugins

2013-07-16 18:06:02 [FINE] [ForgeModLoader] Running coremod plugin FMLCorePlugin

2013-07-16 18:06:02 [sEVERE] [ForgeModLoader] The binary patch set is missing. Things are probably about to go very wrong.

2013-07-16 18:06:02 [FINE] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully

2013-07-16 18:06:02 [FINE] [ForgeModLoader] Running coremod plugin FMLForgePlugin

2013-07-16 18:06:02 [FINE] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully

2013-07-16 18:06:02 [FINE] [ForgeModLoader] Validating minecraft

2013-07-16 18:06:03 [FINE] [ForgeModLoader] Minecraft validated, launching...

2013-07-16 18:06:03 [iNFO] [ForgeModLoader] Launching wrapped minecraft

2013-07-16 18:06:03 [iNFO] [Minecraft-Client] Setting user: Player334

2013-07-16 18:06:03 [iNFO] [Minecraft-Client] (Session ID is null)

2013-07-16 18:06:04 [iNFO] [Minecraft-Client] LWJGL Version: 2.9.0

2013-07-16 18:06:04 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default

2013-07-16 18:06:05 [iNFO] [sTDOUT]

2013-07-16 18:06:05 [iNFO] [sTDOUT] Starting up SoundSystem...

2013-07-16 18:06:05 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization

2013-07-16 18:06:05 [iNFO] [sTDOUT] MinecraftForge v9.10.0.789 Initialized

2013-07-16 18:06:05 [iNFO] [ForgeModLoader] MinecraftForge v9.10.0.789 Initialized

2013-07-16 18:06:05 [iNFO] [sTDOUT] Replaced 101 ore recipies

2013-07-16 18:06:05 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization

2013-07-16 18:06:05 [iNFO] [sTDOUT] Initializing LWJGL OpenAL

2013-07-16 18:06:05 [iNFO] [sTDOUT]    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

2013-07-16 18:06:05 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\leep\Desktop\forge\mcp\jars\config\logging.properties

2013-07-16 18:06:05 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL

2013-07-16 18:06:05 [iNFO] [sTDOUT] OpenAL initialized.

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer]

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related directory at C:\Users\leep\Desktop\forge\mcp\eclipse\Minecraft\bin, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\org\ow2\asm\asm-all\4.1\asm-all-4.1.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\net\minecraft\launchwrapper\1.3\launchwrapper-1.3.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\versions\1.6.1\1.6.1.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\lzma\lzma\0.0.1\lzma-0.0.1.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\net\sf\jopt-simple\jopt-simple\4.5\jopt-simple-4.5.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\com\paulscode\codecjorbis\20101023\codecjorbis-20101023.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\com\paulscode\codecwav\20101023\codecwav-20101023.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\com\paulscode\libraryjavasound\20101123\libraryjavasound-20101123.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\com\paulscode\librarylwjglopenal\20100824\librarylwjglopenal-20100824.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\com\paulscode\soundsystem\20120107\soundsystem-20120107.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\argo\argo\2.25_fixed\argo-2.25_fixed.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\org\bouncycastle\bcprov-jdk15on\1.47\bcprov-jdk15on-1.47.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\com\google\guava\guava\14.0\guava-14.0.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\org\apache\commons\commons-lang3\3.1\commons-lang3-3.1.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\commons-io\commons-io\2.4\commons-io-2.4.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\net\java\jutils\jutils\1.0.0\jutils-1.0.0.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\com\google\code\gson\gson\2.2.2\gson-2.2.2.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\org\lwjgl\lwjgl\lwjgl\2.9.0\lwjgl-2.9.0.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\leep\Desktop\forge\mcp\jars\libraries\org\lwjgl\lwjgl\lwjgl_util\2.9.0\lwjgl_util-2.9.0.jar, examining for mod candidates

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully

2013-07-16 18:06:05 [iNFO] [ForgeModLoader] Searching C:\Users\leep\Desktop\forge\mcp\jars\mods for mods

2013-07-16 18:06:05 [FINE] [ForgeModLoader] Examining directory bin for potential mods

2013-07-16 18:06:05 [FINE] [ForgeModLoader] No mcmod.info file found in directory bin

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package assets

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package assets.minecraft

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package assets.minecraft.textures

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.modloader

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.registry

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm.transformers

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm.transformers.deobf

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery.asm

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.event

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.functions

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.launcher

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.modloader

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.network

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.patcher

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.registry

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.toposort

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.versioning

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.relauncher

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.repackage

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.repackage.com

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.repackage.com.nothome

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.repackage.com.nothome.delta

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.server

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package ibxm

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package lang

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package lang.zyinhud

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.block

2013-07-16 18:06:05 [iNFO] [sTDOUT]

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.block.material

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.audio

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.entity

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.gui

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.gui.achievement

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.gui.inventory

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.gui.mco

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.main

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.mco

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.model

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.multiplayer

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.particle

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.culling

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.entity

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.texture

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.tileentity

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.resources

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.resources.data

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.settings

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.stats

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.command

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.crash

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.creativetab

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.dispenser

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.enchantment

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.ai

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.ai.attributes

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.boss

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.effect

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.item

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.monster

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.passive

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.player

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.projectile

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.inventory

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.item

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.item.crafting

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.logging

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.nbt

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.network

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.network.packet

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.network.rcon

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.pathfinding

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.potion

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.profiler

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.scoreboard

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.dedicated

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.gui

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.integrated

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.management

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.src

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.stats

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.tileentity

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.util

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.village

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.biome

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.chunk

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.chunk.storage

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.demo

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen.feature

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen.layer

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen.structure

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.storage

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.classloading

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event.sound

2013-07-16 18:06:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.model

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.model.obj

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.model.techne

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.common

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.common.network

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.common.network.packet

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.brewing

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.item

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.living

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.minecart

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.player

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.terraingen

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.world

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.fluids

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.liquids

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.oredict

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.transformers

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package paulscode

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound.codecs

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package zyin

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package zyin.zyinhud

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package zyin.zyinhud.helper

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package zyin.zyinhud.keyhandler

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package zyin.zyinhud.tickhandler

2013-07-16 18:06:06 [FINEST] [ForgeModLoader] Recursing into package zyin.zyinhud.util

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Identified an FMLMod type mod zyin.zyinhud.ZyinHUD

2013-07-16 18:06:06 [FINEST] [ZyinHUD] Parsed dependency info : [] [] []

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file asm-all-4.1.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container asm-all-4.1.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file launchwrapper-1.3.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container launchwrapper-1.3.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file 1.6.1.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container 1.6.1.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file lzma-0.0.1.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container lzma-0.0.1.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file jopt-simple-4.5.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container jopt-simple-4.5.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file codecjorbis-20101023.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container codecjorbis-20101023.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file codecwav-20101023.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container codecwav-20101023.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file libraryjavasound-20101123.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file librarylwjglopenal-20100824.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container librarylwjglopenal-20100824.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file soundsystem-20120107.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container soundsystem-20120107.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file argo-2.25_fixed.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container argo-2.25_fixed.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file bcprov-jdk15on-1.47.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container bcprov-jdk15on-1.47.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file guava-14.0.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container guava-14.0.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file commons-lang3-3.1.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container commons-lang3-3.1.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file commons-io-2.4.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container commons-io-2.4.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file jutils-1.0.0.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container jutils-1.0.0.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file gson-2.2.2.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container gson-2.2.2.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file jinput-2.0.5.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container jinput-2.0.5.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file lwjgl-2.9.0.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container lwjgl-2.9.0.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Examining file lwjgl_util-2.9.0.jar for potential mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] The mod container lwjgl_util-2.9.0.jar appears to be missing an mcmod.info file

2013-07-16 18:06:06 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load

2013-07-16 18:06:06 [FINER] [ForgeModLoader] Received a system property request ''

2013-07-16 18:06:06 [FINER] [ForgeModLoader] System property request managing the state of 0 mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] After merging, found state information for 0 mods

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Reloading logging properties from C:\Users\leep\Desktop\forge\mcp\jars\config\logging.properties

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Reloaded logging properties

2013-07-16 18:06:06 [FINE] [mcp] Mod Logging channel mcp configured at default level.

2013-07-16 18:06:06 [iNFO] [mcp] Activating mod mcp

2013-07-16 18:06:06 [FINE] [FML] Mod Logging channel FML configured at default level.

2013-07-16 18:06:06 [iNFO] [FML] Activating mod FML

2013-07-16 18:06:06 [FINE] [Forge] Mod Logging channel Forge configured at default level.

2013-07-16 18:06:06 [iNFO] [Forge] Activating mod Forge

2013-07-16 18:06:06 [FINE] [ZyinHUD] Enabling mod ZyinHUD

2013-07-16 18:06:06 [FINE] [ZyinHUD] Mod Logging channel ZyinHUD configured at default level.

2013-07-16 18:06:06 [iNFO] [ZyinHUD] Activating mod ZyinHUD

2013-07-16 18:06:06 [FINER] [ForgeModLoader] Verifying mod requirements are satisfied

2013-07-16 18:06:06 [FINER] [ForgeModLoader] All mod requirements are satisfied

2013-07-16 18:06:06 [FINER] [ForgeModLoader] Sorting mods into an ordered list

2013-07-16 18:06:06 [FINER] [ForgeModLoader] Mod sorting completed successfully

2013-07-16 18:06:06 [FINE] [ForgeModLoader] Mod sorting data

2013-07-16 18:06:06 [FINE] [ForgeModLoader] ZyinHUD(Zyin's HUD:0.8.1): bin ()

2013-07-16 18:06:06 [FINEST] [mcp] Sending event FMLConstructionEvent to mod mcp

2013-07-16 18:06:06 [FINEST] [mcp] Sent event FMLConstructionEvent to mod mcp

2013-07-16 18:06:06 [FINEST] [FML] Sending event FMLConstructionEvent to mod FML

2013-07-16 18:06:06 [FINEST] [FML] Sent event FMLConstructionEvent to mod FML

2013-07-16 18:06:06 [FINEST] [Forge] Sending event FMLConstructionEvent to mod Forge

2013-07-16 18:06:06 [iNFO] [ForgeModLoader] Registering Forge Packet Handler

2013-07-16 18:06:07 [FINEST] [ForgeModLoader] Testing mod Forge to verify it accepts its own version in a remote connection

2013-07-16 18:06:07 [FINEST] [ForgeModLoader] The mod Forge accepts its own version (9.10.0.789)

2013-07-16 18:06:07 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler

2013-07-16 18:06:07 [FINEST] [Forge] Sent event FMLConstructionEvent to mod Forge

2013-07-16 18:06:07 [FINEST] [ZyinHUD] Sending event FMLConstructionEvent to mod ZyinHUD

2013-07-16 18:06:07 [FINEST] [ForgeModLoader] Testing mod ZyinHUD to verify it accepts its own version in a remote connection

2013-07-16 18:06:07 [FINEST] [ForgeModLoader] The mod ZyinHUD accepts its own version (0.8.1)

2013-07-16 18:06:07 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ZyinHUD

2013-07-16 18:06:07 [iNFO] [sTDOUT] containsK:false

2013-07-16 18:06:07 [FINEST] [ZyinHUD] Sent event FMLConstructionEvent to mod ZyinHUD

2013-07-16 18:06:07 [FINE] [ForgeModLoader] Mod signature data

2013-07-16 18:06:07 [FINE] [ForgeModLoader] mcp(Minecraft Coder Pack:8.04): minecraft.jar (NO VALID CERTIFICATE FOUND)

2013-07-16 18:06:07 [FINE] [ForgeModLoader] FML(Forge Mod Loader:6.2.19.789): coremods (NO VALID CERTIFICATE FOUND)

2013-07-16 18:06:07 [FINE] [ForgeModLoader] Forge(Minecraft Forge:9.10.0.789): coremods (NO VALID CERTIFICATE FOUND)

2013-07-16 18:06:07 [FINE] [ForgeModLoader] ZyinHUD(Zyin's HUD:0.8.1): bin (NO VALID CERTIFICATE FOUND)

2013-07-16 18:06:07 [FINEST] [mcp] Sending event FMLPreInitializationEvent to mod mcp

2013-07-16 18:06:07 [FINEST] [mcp] Sent event FMLPreInitializationEvent to mod mcp

2013-07-16 18:06:07 [FINEST] [FML] Sending event FMLPreInitializationEvent to mod FML

2013-07-16 18:06:07 [FINEST] [FML] Sent event FMLPreInitializationEvent to mod FML

2013-07-16 18:06:07 [FINEST] [Forge] Sending event FMLPreInitializationEvent to mod Forge

2013-07-16 18:06:07 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0

2013-07-16 18:06:07 [FINEST] [Forge] Sent event FMLPreInitializationEvent to mod Forge

2013-07-16 18:06:07 [FINEST] [ZyinHUD] Sending event FMLPreInitializationEvent to mod ZyinHUD

2013-07-16 18:06:07 [sEVERE] [ZyinHUD] The language resource /lang/zyinhud/zh_CN.properties cannot be located on the classpath. This is a programming error.

2013-07-16 18:06:07 [FINEST] [ZyinHUD] Sent event FMLPreInitializationEvent to mod ZyinHUD

2013-07-16 18:06:07 [FINEST] [mcp] Sending event FMLInitializationEvent to mod mcp

2013-07-16 18:06:07 [FINEST] [mcp] Sent event FMLInitializationEvent to mod mcp

2013-07-16 18:06:07 [FINEST] [FML] Sending event FMLInitializationEvent to mod FML

2013-07-16 18:06:07 [FINEST] [FML] Sent event FMLInitializationEvent to mod FML

2013-07-16 18:06:07 [FINEST] [Forge] Sending event FMLInitializationEvent to mod Forge

2013-07-16 18:06:07 [FINEST] [Forge] Sent event FMLInitializationEvent to mod Forge

2013-07-16 18:06:07 [FINEST] [ZyinHUD] Sending event FMLInitializationEvent to mod ZyinHUD

2013-07-16 18:06:07 [FINEST] [ZyinHUD] Sent event FMLInitializationEvent to mod ZyinHUD

2013-07-16 18:06:07 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod mcp

2013-07-16 18:06:07 [FINEST] [mcp] Sending event IMCEvent to mod mcp

2013-07-16 18:06:07 [FINEST] [mcp] Sent event IMCEvent to mod mcp

2013-07-16 18:06:07 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod FML

2013-07-16 18:06:07 [FINEST] [FML] Sending event IMCEvent to mod FML

2013-07-16 18:06:07 [FINEST] [FML] Sent event IMCEvent to mod FML

2013-07-16 18:06:07 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod Forge

2013-07-16 18:06:07 [FINEST] [Forge] Sending event IMCEvent to mod Forge

2013-07-16 18:06:07 [FINEST] [Forge] Sent event IMCEvent to mod Forge

2013-07-16 18:06:07 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod ZyinHUD

2013-07-16 18:06:07 [FINEST] [ZyinHUD] Sending event IMCEvent to mod ZyinHUD

2013-07-16 18:06:07 [FINEST] [ZyinHUD] Sent event IMCEvent to mod ZyinHUD

2013-07-16 18:06:07 [FINEST] [mcp] Sending event FMLPostInitializationEvent to mod mcp

2013-07-16 18:06:07 [FINEST] [mcp] Sent event FMLPostInitializationEvent to mod mcp

2013-07-16 18:06:07 [FINEST] [FML] Sending event FMLPostInitializationEvent to mod FML

2013-07-16 18:06:07 [FINEST] [FML] Sent event FMLPostInitializationEvent to mod FML

2013-07-16 18:06:07 [FINEST] [Forge] Sending event FMLPostInitializationEvent to mod Forge

2013-07-16 18:06:07 [FINEST] [Forge] Sent event FMLPostInitializationEvent to mod Forge

2013-07-16 18:06:07 [FINEST] [ZyinHUD] Sending event FMLPostInitializationEvent to mod ZyinHUD

2013-07-16 18:06:07 [FINEST] [ZyinHUD] Sent event FMLPostInitializationEvent to mod ZyinHUD

2013-07-16 18:06:07 [FINEST] [mcp] Sending event FMLLoadCompleteEvent to mod mcp

2013-07-16 18:06:07 [FINEST] [mcp] Sent event FMLLoadCompleteEvent to mod mcp

2013-07-16 18:06:07 [FINEST] [FML] Sending event FMLLoadCompleteEvent to mod FML

2013-07-16 18:06:07 [FINEST] [FML] Sent event FMLLoadCompleteEvent to mod FML

2013-07-16 18:06:07 [FINEST] [Forge] Sending event FMLLoadCompleteEvent to mod Forge

2013-07-16 18:06:07 [FINEST] [Forge] Sent event FMLLoadCompleteEvent to mod Forge

2013-07-16 18:06:07 [FINEST] [ZyinHUD] Sending event FMLLoadCompleteEvent to mod ZyinHUD

2013-07-16 18:06:07 [FINEST] [ZyinHUD] Sent event FMLLoadCompleteEvent to mod ZyinHUD

2013-07-16 18:06:07 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 4 mods

2013-07-16 18:06:07 [WARNING] [Zyin's HUD] Mod Zyin's HUD is missing a pack.mcmeta file, things may not work well

2013-07-16 18:06:07 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Zyin's HUD

2013-07-16 18:06:08 [iNFO] [sTDOUT]

2013-07-16 18:06:08 [iNFO] [sTDOUT] SoundSystem shutting down...

2013-07-16 18:06:08 [iNFO] [sTDOUT]    Author: Paul Lamb, www.paulscode.com

2013-07-16 18:06:08 [iNFO] [sTDOUT]

2013-07-16 18:06:08 [iNFO] [sTDOUT]

2013-07-16 18:06:08 [iNFO] [sTDOUT] Starting up SoundSystem...

2013-07-16 18:06:08 [iNFO] [sTDOUT] Initializing LWJGL OpenAL

2013-07-16 18:06:08 [iNFO] [sTDOUT]    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

2013-07-16 18:06:08 [iNFO] [sTDOUT] OpenAL initialized.

2013-07-16 18:06:08 [sEVERE] [Minecraft-Client] Realms: Invalid session id

2013-07-16 18:06:08 [iNFO] [sTDOUT]

2013-07-16 18:06:12 [iNFO] [Minecraft-Server] Starting integrated minecraft server version 1.6.2

2013-07-16 18:06:12 [iNFO] [Minecraft-Server] Generating keypair

2013-07-16 18:06:12 [FINEST] [mcp] Sending event FMLServerAboutToStartEvent to mod mcp

2013-07-16 18:06:12 [FINEST] [mcp] Sent event FMLServerAboutToStartEvent to mod mcp

2013-07-16 18:06:12 [FINEST] [FML] Sending event FMLServerAboutToStartEvent to mod FML

2013-07-16 18:06:12 [FINEST] [FML] Sent event FMLServerAboutToStartEvent to mod FML

2013-07-16 18:06:12 [FINEST] [Forge] Sending event FMLServerAboutToStartEvent to mod Forge

2013-07-16 18:06:12 [FINEST] [Forge] Sent event FMLServerAboutToStartEvent to mod Forge

2013-07-16 18:06:12 [FINEST] [ZyinHUD] Sending event FMLServerAboutToStartEvent to mod ZyinHUD

2013-07-16 18:06:12 [FINEST] [ZyinHUD] Sent event FMLServerAboutToStartEvent to mod ZyinHUD

2013-07-16 18:06:12 [FINE] [fml.ItemTracker] The difference set is equal

2013-07-16 18:06:12 [iNFO] [ForgeModLoader] Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@689961d1)

2013-07-16 18:06:12 [iNFO] [ForgeModLoader] Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@689961d1)

2013-07-16 18:06:12 [iNFO] [ForgeModLoader] Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@689961d1)

2013-07-16 18:06:12 [iNFO] [Minecraft-Server] Preparing start region for level 0

2013-07-16 18:06:13 [FINEST] [mcp] Sending event FMLServerStartingEvent to mod mcp

2013-07-16 18:06:13 [FINEST] [mcp] Sent event FMLServerStartingEvent to mod mcp

2013-07-16 18:06:13 [FINEST] [FML] Sending event FMLServerStartingEvent to mod FML

2013-07-16 18:06:13 [FINEST] [FML] Sent event FMLServerStartingEvent to mod FML

2013-07-16 18:06:13 [FINEST] [Forge] Sending event FMLServerStartingEvent to mod Forge

2013-07-16 18:06:13 [FINEST] [Forge] Sent event FMLServerStartingEvent to mod Forge

2013-07-16 18:06:13 [FINEST] [ZyinHUD] Sending event FMLServerStartingEvent to mod ZyinHUD

2013-07-16 18:06:13 [FINEST] [ZyinHUD] Sent event FMLServerStartingEvent to mod ZyinHUD

2013-07-16 18:06:13 [FINEST] [mcp] Sending event FMLServerStartedEvent to mod mcp

2013-07-16 18:06:13 [FINEST] [mcp] Sent event FMLServerStartedEvent to mod mcp

2013-07-16 18:06:13 [FINEST] [FML] Sending event FMLServerStartedEvent to mod FML

2013-07-16 18:06:13 [FINEST] [FML] Sent event FMLServerStartedEvent to mod FML

2013-07-16 18:06:13 [FINEST] [Forge] Sending event FMLServerStartedEvent to mod Forge

2013-07-16 18:06:13 [FINEST] [Forge] Sent event FMLServerStartedEvent to mod Forge

2013-07-16 18:06:13 [FINEST] [ZyinHUD] Sending event FMLServerStartedEvent to mod ZyinHUD

2013-07-16 18:06:13 [FINEST] [ZyinHUD] Sent event FMLServerStartedEvent to mod ZyinHUD

2013-07-16 18:06:13 [iNFO] [sTDOUT] loading single player

2013-07-16 18:06:13 [iNFO] [Minecraft-Server] Player334[/127.0.0.1:0] logged in with entity id 54 at (-37.52615385570691, 4.0, -71.68338542165127)

2013-07-16 18:06:13 [iNFO] [Minecraft-Server] Player334 joined the game

2013-07-16 18:06:13 [iNFO] [sTDOUT] Setting up custom skins

2013-07-16 18:06:14 [iNFO] [Minecraft-Server] Saving and pausing game...

2013-07-16 18:06:14 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld

2013-07-16 18:06:14 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether

2013-07-16 18:06:14 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End

2013-07-16 18:06:14 [iNFO] [Minecraft-Server] Saving and pausing game...

2013-07-16 18:06:14 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld

2013-07-16 18:06:14 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether

2013-07-16 18:06:14 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End

2013-07-16 18:06:15 [FINEST] [mcp] Sending event FMLServerStoppingEvent to mod mcp

2013-07-16 18:06:15 [FINEST] [mcp] Sent event FMLServerStoppingEvent to mod mcp

2013-07-16 18:06:15 [FINEST] [FML] Sending event FMLServerStoppingEvent to mod FML

2013-07-16 18:06:15 [FINEST] [FML] Sent event FMLServerStoppingEvent to mod FML

2013-07-16 18:06:15 [FINEST] [Forge] Sending event FMLServerStoppingEvent to mod Forge

2013-07-16 18:06:15 [FINEST] [Forge] Sent event FMLServerStoppingEvent to mod Forge

2013-07-16 18:06:15 [FINEST] [ZyinHUD] Sending event FMLServerStoppingEvent to mod ZyinHUD

2013-07-16 18:06:15 [FINEST] [ZyinHUD] Sent event FMLServerStoppingEvent to mod ZyinHUD

2013-07-16 18:06:15 [iNFO] [Minecraft-Server] Stopping server

2013-07-16 18:06:15 [iNFO] [Minecraft-Server] Saving players

2013-07-16 18:06:15 [iNFO] [Minecraft-Server] Player334 left the game

2013-07-16 18:06:15 [iNFO] [Minecraft-Server] Saving worlds

2013-07-16 18:06:15 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld

2013-07-16 18:06:15 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether

2013-07-16 18:06:15 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End

2013-07-16 18:06:15 [iNFO] [ForgeModLoader] Unloading dimension 0

2013-07-16 18:06:15 [iNFO] [ForgeModLoader] Unloading dimension -1

2013-07-16 18:06:15 [iNFO] [ForgeModLoader] Unloading dimension 1

2013-07-16 18:06:15 [FINEST] [mcp] Sending event FMLServerStoppedEvent to mod mcp

2013-07-16 18:06:15 [FINEST] [mcp] Sent event FMLServerStoppedEvent to mod mcp

2013-07-16 18:06:15 [FINEST] [FML] Sending event FMLServerStoppedEvent to mod FML

2013-07-16 18:06:15 [FINEST] [FML] Sent event FMLServerStoppedEvent to mod FML

2013-07-16 18:06:15 [FINEST] [Forge] Sending event FMLServerStoppedEvent to mod Forge

2013-07-16 18:06:15 [FINEST] [Forge] Sent event FMLServerStoppedEvent to mod Forge

2013-07-16 18:06:15 [FINEST] [ZyinHUD] Sending event FMLServerStoppedEvent to mod ZyinHUD

2013-07-16 18:06:15 [FINEST] [ZyinHUD] Sent event FMLServerStoppedEvent to mod ZyinHUD

2013-07-16 18:06:16 [iNFO] [Minecraft-Client] Stopping!

2013-07-16 18:06:16 [iNFO] [sTDOUT]

2013-07-16 18:06:16 [iNFO] [sTDOUT] SoundSystem shutting down...

2013-07-16 18:06:16 [iNFO] [sTDOUT]    Author: Paul Lamb, www.paulscode.com

2013-07-16 18:06:16 [iNFO] [sTDOUT]

 

 

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

    • Prism Launcher version: 9.1 (official)     Launched instance in online mode   login.microsoftonline.com resolves to: [2603:1056:2000:28::3, 2603:1056:2000:38::1, 2603:1056:2000:38::5, 2603:1056:2000:38::2, 2603:1057:2:38::2, 2603:1056:2000:28::2, 2603:1057:2:28::2, 2603:1056:2000:30::4, 20.190.173.72, 20.190.173.132, 40.126.45.17, 20.190.173.130, 20.190.173.2, 20.190.173.66, 20.190.173.1, 40.126.45.19]     session.minecraft.net resolves to: [2620:1ec:bdf::33, 13.107.246.33]     textures.minecraft.net resolves to: [2620:1ec:bdf::33, 13.107.246.33]     api.mojang.com resolves to: [2620:1ec:bdf::33, 13.107.246.33]     Minecraft folder is: C:/Users/phgc2/AppData/Roaming/PrismLauncher/instances/imersivo/minecraft     Java path is: C:/Users/phgc2/AppData/Roaming/PrismLauncher/java/java-runtime-gamma/bin/javaw.exe     Java is version 17.0.8, using 64 (amd64) architecture, from Microsoft.     Main Class: io.github.zekerzhayard.forgewrapper.installer.Main   Native path: C:/Users/phgc2/AppData/Roaming/PrismLauncher/instances/imersivo/natives   Traits: traits feature:is_quick_play_singleplayer traits feature:is_quick_play_multiplayer traits FirstThreadOnMacOS traits XR:Initial   Libraries: C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-glfw-natives-windows-arm64/3.3.1/lwjgl-glfw-natives-windows-arm64-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-glfw-natives-windows-x86/3.3.1/lwjgl-glfw-natives-windows-x86-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-glfw-natives-windows/3.3.1/lwjgl-glfw-natives-windows-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-jemalloc-natives-windows-arm64/3.3.1/lwjgl-jemalloc-natives-windows-arm64-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-jemalloc-natives-windows-x86/3.3.1/lwjgl-jemalloc-natives-windows-x86-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-jemalloc-natives-windows/3.3.1/lwjgl-jemalloc-natives-windows-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-natives-windows-arm64/3.3.1/lwjgl-natives-windows-arm64-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-natives-windows-x86/3.3.1/lwjgl-natives-windows-x86-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-natives-windows/3.3.1/lwjgl-natives-windows-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-openal-natives-windows-arm64/3.3.1/lwjgl-openal-natives-windows-arm64-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-openal-natives-windows-x86/3.3.1/lwjgl-openal-natives-windows-x86-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-openal-natives-windows/3.3.1/lwjgl-openal-natives-windows-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-opengl-natives-windows-arm64/3.3.1/lwjgl-opengl-natives-windows-arm64-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-opengl-natives-windows-x86/3.3.1/lwjgl-opengl-natives-windows-x86-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-opengl-natives-windows/3.3.1/lwjgl-opengl-natives-windows-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-stb-natives-windows-arm64/3.3.1/lwjgl-stb-natives-windows-arm64-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-stb-natives-windows-x86/3.3.1/lwjgl-stb-natives-windows-x86-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-stb-natives-windows/3.3.1/lwjgl-stb-natives-windows-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-tinyfd-natives-windows-arm64/3.3.1/lwjgl-tinyfd-natives-windows-arm64-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-tinyfd-natives-windows-x86/3.3.1/lwjgl-tinyfd-natives-windows-x86-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-tinyfd-natives-windows/3.3.1/lwjgl-tinyfd-natives-windows-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/com/github/oshi/oshi-core/6.2.2/oshi-core-6.2.2.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/com/google/code/gson/gson/2.10/gson-2.10.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/com/ibm/icu/icu4j/71.1/icu4j-71.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/com/mojang/authlib/4.0.43/authlib-4.0.43.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/com/mojang/blocklist/1.0.10/blocklist-1.0.10.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/com/mojang/brigadier/1.1.8/brigadier-1.1.8.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/com/mojang/datafixerupper/6.0.8/datafixerupper-6.0.8.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/com/mojang/logging/1.1.1/logging-1.1.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/com/mojang/patchy/2.2.10/patchy-2.2.10.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/com/mojang/text2speech/1.17.9/text2speech-1.17.9.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/commons-codec/commons-codec/1.15/commons-codec-1.15.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/io/netty/netty-buffer/4.1.82.Final/netty-buffer-4.1.82.Final.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/io/netty/netty-codec/4.1.82.Final/netty-codec-4.1.82.Final.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/io/netty/netty-common/4.1.82.Final/netty-common-4.1.82.Final.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/io/netty/netty-handler/4.1.82.Final/netty-handler-4.1.82.Final.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/io/netty/netty-resolver/4.1.82.Final/netty-resolver-4.1.82.Final.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/io/netty/netty-transport-classes-epoll/4.1.82.Final/netty-transport-classes-epoll-4.1.82.Final.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/io/netty/netty-transport-native-unix-common/4.1.82.Final/netty-transport-native-unix-common-4.1.82.Final.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/io/netty/netty-transport/4.1.82.Final/netty-transport-4.1.82.Final.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/it/unimi/dsi/fastutil/8.5.9/fastutil-8.5.9.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/net/java/dev/jna/jna-platform/5.12.1/jna-platform-5.12.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/apache/logging/log4j/log4j-api/2.19.0/log4j-api-2.19.0.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/apache/logging/log4j/log4j-core/2.19.0/log4j-core-2.19.0.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/apache/logging/log4j/log4j-slf4j2-impl/2.19.0/log4j-slf4j2-impl-2.19.0.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/joml/joml/1.10.5/joml-1.10.5.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/slf4j/slf4j-api/2.0.1/slf4j-api-2.0.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/io/github/zekerzhayard/ForgeWrapper/prism-2024-02-29/ForgeWrapper-prism-2024-02-29.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/cpw/mods/securejarhandler/2.1.10/securejarhandler-2.1.10.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/ow2/asm/asm/9.7/asm-9.7.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/ow2/asm/asm-tree/9.7/asm-tree-9.7.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/ow2/asm/asm-util/9.7/asm-util-9.7.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/ow2/asm/asm-analysis/9.7/asm-analysis-9.7.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/eventbus/6.0.5/eventbus-6.0.5.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/forgespi/7.0.1/forgespi-7.0.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/coremods/5.1.6/coremods-5.1.6.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/cpw/mods/modlauncher/10.0.9/modlauncher-10.0.9.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/mergetool/1.1.5/mergetool-1.1.5-api.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/net/jodah/typetools/0.6.3/typetools-0.6.3.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/JarJarSelector/0.3.19/JarJarSelector-0.3.19.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/JarJarMetadata/0.3.19/JarJarMetadata-0.3.19.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/JarJarFileSystems/0.3.19/JarJarFileSystems-0.3.19.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/fmlloader/1.20.1-47.3.0/fmlloader-1.20.1-47.3.0.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/fmlearlydisplay/1.20.1-47.3.0/fmlearlydisplay-1.20.1-47.3.0.jar C:/Users/phgc2/AppData/Roaming/PrismLauncher/libraries/com/mojang/minecraft/1.20.1/minecraft-1.20.1-client.jar   Native libraries:   Mods: [🖿] (folder) [✔] [1.20.1-forge]-Epic-Knights-9.21 [✔] aaa_particles_world-forge-1.20.1-1.0.3 [✔] aaa_particles-1.20.1-1.4.10-forge [✔] advancednetherite-forge-2.1.3-1.20.1 [✔] AdvancementPlaques-1.20.1-forge-1.6.7 [✔] AI-Improvements-1.20-0.5.2 [✔] aileron-1.20.1-forge-1.0.3 [✔] almostunified-forge-1.20.1-0.9.4 [✔] ancient_forkway-1.0.4-forge-1.20.1 [✔] architectury-9.2.14-forge [✔] artifacts-forge-9.5.13 [✔] atmospheric-1.20.1-6.0.0 [✔] AutoLeveling-1.20-1.19b [✔] azurelib-neo-1.20.1-2.0.41 [✔] BadOptimizations-2.2.1-1.20.1 [✔] better_hp-7.5.2-1.20.1-forge [✔] better_mob_drops [✔] BetterAdvancements-Forge-1.20.1-0.4.2.25 [✔] betterchunkloading-1.20.1-5.2 [✔] BetterCompatibilityChecker-3.0.1-build.58+mc1.20 [✔] betterfpsdist-1.20.1-6.0 [✔] blueprint-1.20.1-7.1.0 [✔] blur-forge-3.1.1 [✔] Bookshelf-Forge-1.20.1-20.2.13 [✔] Bountiful-6.0.4+1.20.1-forge [✔] brb-1.10.0-rc5+1.20.0-1 [✔] bygonenether-1.3.2-1.20.x [✔] canary-mc1.20.1-0.3.3.jar [✔] CarbonConfig-1.20-1.2.6 [✔] cataclysm_tools-1.0.0-forge-1.20.1 [✔] CataclysmWeaponery2.0-1.20.1 [✔] celestisynth-1.20.1-1.3.1 [✔] champions-forge-1.20.1-2.1.7.1-beta-8 [✔] chat_heads-0.13.7-forge-1.20 [✔] Chunk-Pregenerator-1.20-4.4.4 [✔] citadel-2.6.1-1.20.1 [✔] clean_tooltips-1.0-forge-1.20.1 [✔] cloth-config-11.1.136-forge [✔] collective-1.20.1-7.87 [✔] comforts-forge-6.4.0+1.20.1 [✔] CommonCapabilities-1.20.1-2.9.4 [✔] configured-forge-1.20.1-2.2.3 [✔] Connector-1.0.0-beta.46+1.20.1 [✔] ConnectorExtras-1.11.2+1.20.1 [✔] Controlling-forge-1.20.1-12.0.2 [✔] Corgilib-Forge-1.20.1-4.0.3.3 [✔] cosmeticarmorreworked-1.20.1-v1a [✔] CosmeticArmours - 1.4.5.1 - 1.20.1 - Forge [✘] CraftTweaker-forge-1.20.1-14.0.48.jar (disabled) [✔] create-1.20.1-0.5.1.j [✔] CreativeCore_FORGE_v2.12.28_mc1.20.1 [✔] cristellib-1.1.6-forge [✔] CullLessLeaves-Reforged-1.20.1-1.0.5 [✔] cupboard-1.20.1-2.7 [✔] curios-forge-5.11.1+1.20.1 [✔] CyclopsCore-1.20.1-1.19.5 [✔] deeperdarker-forge-1.20.1-1.3.3 [✔] dragonfight-1.20.1-4.6 [✔] dragonseeker-1.2.0-1.20.1 [✔] dummmmmmy-1.20-2.0.2 [✔] Dungeon Now Loading-forge-1.20.1-1.5 [✘] dungeons_enhanced-1.20.1-5.3.0.jar (disabled) [✔] dungeons_plus-1.20.1-1.5.0 [✔] dynamic-fps-3.7.7+minecraft-1.20.0-forge [✔] Eldritch_End-FORGE-MC1.20.1-0.3.2 [✔] ElysiumAPI-1.20.1-1.0.2 [✔] embeddium-0.3.31+mc1.20.1 [✔] embeddiumplus-1.20.1-v1.2.13 [✔] EnchantmentDescriptions-Forge-1.20.1-17.1.19 [✔] endergetic-1.20.1-5.0.0 [✔] endrem_forge-5.3.3-R-1.20.1 [✔] EnhancedAI-2.5.2-mc1.20.1 [✔] EnhancedVisuals_FORGE_v1.8.1_mc1.20.1 [✔] entity_model_features_forge_1.20.1-2.4.1 [✔] entity_model_features_forge_1.20.1-2.4.1.jar [✔] entity_texture_features_forge_1.20.1-6.2.9 [✔] entityculling-forge-1.7.2-mc1.20.1 [✔] expanded_ecosphere-3.2.4-forge [✔] extragore-1.20.1-5.2.3.1 [✔] fasterblockplacement-1.0.1 [✔] FastFurnace-1.20.1-8.0.2 [✔] FastLeafDecay-32 [✔] Fastload-Reforged-mc1.20.1-3.4.0 [✔] FastSuite-1.20.1-5.0.1 [✔] FastWorkbench-1.20.1-8.0.4 [✔] ferritecore-6.0.1-forge [✔] firstperson-forge-2.4.8-mc1.20.1 [✔] Fog-forge-1.5.3-1.20.1 [✔] formations-1.0.3-forge-mc1.20.2 [✔] formationsnether-1.0.5 [✔] fortune_on_netherite_1.1.0_forge_1.20.1 [✔] framework-forge-1.20.1-0.7.12 [✔] ftb-chunks-forge-2001.3.4 [✔] ftb-library-forge-2001.2.7 [✔] ftb-teams-forge-2001.3.0 [✔] geckolib-forge-1.20.1-4.7 [✔] GlitchCore-forge-1.20.1-0.0.1.1 [✔] GlobalGameRules-1.20-8.0.0.11 [✔] goblintraders-forge-1.20.1-1.9.3 [✔] guardvillagers-1.20.1-1.6.10 [✔] HammerLib-1.20.1-20.1.29 [✔] harderspawners-1.20-46.25.3 [✔] healingcampfire-1.20.1-6.1 [✘] Highlighter-1.20.1-forge-1.1.9.jar (disabled) [✔] highlight-forge-1.20-2.0.1 [✔] iceandfire-2.1.13-1.20.1-beta-5 [✔] Iceberg-1.20.1-forge-1.1.25 [✘] idas_forge-1.10.3+1.20.1.jar (disabled) [✔] illageandspillagerespillaged-1.2.2 [✔] illagersweararmor-1.20.1-1.3.5 [✔] ImmediatelyFast-Forge-1.3.3+1.20.4 [✔] infernalfurnace-1.0.0-1.20.1 [✔] InsaneLib-1.16.1-mc1.20.1 [✔] integrated_api-1.5.1+1.20.1-forge [✔] integrated_villages-1.1.5+1.20.1-forge [✔] IntegratedCrafting-1.20.1-1.1.9 [✔] IntegratedDynamics-1.20.1-1.25.0 [✔] IntegratedScripting-1.20.1-1.0.9 [✔] IntegratedTerminals-1.20.1-1.6.3 [✔] IntegratedTunnels-1.20.1-1.8.33 [✘] Jadens-Nether-Expansion-2.2.1.jar (disabled) [✔] jeed-1.20-2.2.2 [✔] jei-1.20.1-forge-15.20.0.106 [✔] jeiintegration_1.20.1-10.0.0 [✔] justenoughbreeding-forge-1.20-1.20.1-1.5.0 [✔] Kambrik-6.1.1+1.20.1-forge [✔] kotlinforforge-4.11.0-all [✔] kubejs-forge-2001.6.5-build.16 [✔] L_Enders_Cataclysm-2.35- 1.20.1 [✔] legendary_additions-1.20.1-1.0.9 [✔] legendarycreatures-1.20.1-1.0.15 [✔] legendarymonsters-1.6.2 MC 1.20.1 [✔] legendarysurvivaloverhaul-1.20.1-2.2.14 [✘] LegendaryTooltips-1.20.1-forge-1.4.5.jar (disabled) [✔] letsdo-API-forge-1.2.15-forge [✔] letsdo-beachparty-forge-1.1.5 [✔] Library_of_Exile-1.20.1-1.5.7 [✔] lionfishapi-2.4 [✔] lootbeams-1.20.1-1.2.6 [✔] lootintegrations_valhelsia-1.0 [✔] lootintegrations-1.20.1-4.0 [✔] lootjs-forge-1.20.1-2.12.0 [✔] lootr-forge-1.20-0.7.35.90 [✔] memoryleakfix-forge-1.17+-1.1.5 [✔] Mine_and_Slash-1.20.1-6.0.5 [✔] mobsunscreen-forge-1.20.1-3.1.1 [✘] modernfix-forge-5.20.0+mc1.20.1.jar (disabled) [✔] Mo'Enchantments-1.20.1-1.10 [✔] monolib-forge-1.20.1-1.4.1 [✔] moonlight-1.20-2.13.47-forge [✔] more_beautiful_torches-merged-1.20.1-3.0.0 [✔] morevillagers-forge-1.20.1-5.0.0 [✔] MouseTweaks-forge-mc1.20.1-2.25.1 [✔] MRU-1.0.4+1.20.1+forge [✔] multimine-1.20.1.4 [✔] nbc-all-2.0-1.20+ [✔] Necronomicon-Forge-1.6.0+1.20.1 [✔] nyfsspiders-forge-1.20.1-2.1.1 [✔] OctoLib-FORGE-0.4.2+1.20.1 [✔] oculus-mc1.20.1-1.8.0 [✔] Oh-The-Biomes-Weve-Gone-Forge-1.5.1 [✔] Oh-The-Trees-Youll-Grow-forge-1.20.1-1.3.4 [✔] palegarden-1.0.7-forge-1.20.1 [✔] Paraglider-forge-20.1.3 [✔] Patchouli-1.20.1-84-FORGE [✔] Placebo-1.20.1-8.6.2 [✔] player-animation-lib-forge-1.0.2-rc1+1.20 [✔] polymorph-forge-0.49.8+1.20.1 [✔] Prism-1.20.1-forge-1.0.5 [✔] projectvibrantjourneys-1.20.1-6.0.4 [✘] Quark-4.0-460.jar (disabled) [✘] QuarkOddities-1.20.1.jar (disabled) [✔] radium-mc1.20.1-0.12.4+git.26c9d8e [✔] rarcompat-1.20.1-0.1.7 [✔] rare-ice-0.6.0 [✔] relics_vivid_light-1.0 [✔] relics-1.20.1-0.8.0.7 [✔] repurposed_structures-7.1.15+1.20.1-forge [✔] rhino-forge-2001.2.3-build.6 [✘] rubidium-extra-0.5.4.3+mc1.20.1-build.121.jar (disabled) [✔] saturn-mc1.20.1-0.1.3 [✔] savage_and_ravage-1.20.1-6.0.0 [✔] Searchables-forge-1.20.1-1.0.3 [✔] SereneSeasons-forge-1.20.1-9.1.0.0 [✔] SereneShrubbery-1.20.1-v2.0.0 [✔] Shrines-1.20.1-6.0.2 [✔] skinlayers3d-forge-1.7.4-mc1.20.1 [✔] skinlayers3d-forge-1.7.4-mc1.20.1.jar [✔] smarterfarmers-1.20-2.1.0 [✔] sound-physics-remastered-forge-1.20.1-1.4.8 [✔] spartanfire-1.20.1-2.1.0 [✔] spartantoolkit-1.20.1-1.5.1 [✔] SpartanWeaponry-1.20.1-forge-3.1.3-all [✔] starlight-1.1.2+forge.1cda73c [✔] structure_gel-1.20.1-2.16.2 [✔] supplementaries-1.20-3.1.11 [✔] TerraBlender-forge-1.20.1-3.0.1.7 [✔] TES-forge-1.20.1-1.5.1 [✔] The_Graveyard_3.1_(FORGE)_for_1.20.1 [✔] the-conjurer-1.20.1-1.1.6 [✔] theoneprobe-1.20.1-10.0.2 [✔] toofast-1.20-0.4.3.5 [✔] TravelersTitles-1.20-Forge-4.0.2 [✔] tru.e-ending-v1.1.0c [✔] trulytreasures-1.20-3.0.0-forge [✔] Tumbleweed-forge-1.20.1-0.5.5 [✔] upgrade_aquatic-1.20.1-6.0.1 [✔] valhelsia_core-forge-1.20.1-1.1.2 [✔] valhelsia_furniture-forge-1.20.1-1.1.3 [✔] valhelsia_structures-forge-1.20.1-1.1.2 [✔] villagernames-1.20.1-8.1 [✔] visuality-forge-2.0.2 [✔] wandering-bags-1.20.1-2.0.7 [✔] Waves-1.20.1-1.1.1 [✔] wings-2.1.4-all [✔] XaerosWorldMap_1.39.2_Forge_1.20.jar [✔] YetAnotherConfigLib-3.6.2+1.20.1-forge [✔] YungsApi-1.20-Forge-4.0.6 [✔] YungsBetterDungeons-1.20-Forge-4.0.4 [✔] YungsBetterEndIsland-1.20-Forge-2.0.6 [✔] YungsBetterNetherFortresses-1.20-Forge-2.0.6 [✔] YungsExtras-1.20-Forge-4.0.3 [✘] Zeta-1.0-24.jar (disabled)   Params: --username --version 1.20.1 --gameDir C:/Users/phgc2/AppData/Roaming/PrismLauncher/instances/imersivo/minecraft --assetsDir C:/Users/phgc2/AppData/Roaming/PrismLauncher/assets --assetIndex 5 --uuid --accessToken --userType --versionType release --launchTarget forgeclient --fml.forgeVersion 47.3.0 --fml.mcVersion 1.20.1 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20230612.114412   Window size: 854 x 480   Launcher: standard   Java Arguments: [-XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump, -Xms512m, -Xmx12800m, -Duser.language=en]     Minecraft process ID: 16696     Checking: MC_SLIM Checking: MERGED_MAPPINGS Checking: MAPPINGS Checking: MC_EXTRA Checking: MOJMAPS Checking: PATCHED Checking: MC_SRG 2025-01-11 01:55:22,214 main WARN Advanced terminal features are not available in this environment [01:55:22] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--username, p3dr05009, --version, 1.20.1, --gameDir, C:/Users/phgc2/AppData/Roaming/PrismLauncher/instances/imersivo/minecraft, --assetsDir, C:/Users/phgc2/AppData/Roaming/PrismLauncher/assets, --assetIndex, 5, --uuid, <PROFILE ID>, --accessToken, ????????, --userType, msa, --versionType, release, --launchTarget, forgeclient, --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, --width, 854, --height, 480] [01:55:22] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: 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 [01:55:23] [main/INFO] [ne.mi.fm.lo.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow [01:55:23] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 [01:55:24] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 [01:55:24] [main/INFO] [mixin-transmog/]: Mixin Transmogrifier is definitely up to no good... [01:55:24] [main/INFO] [mixin-transmog/]: crimes against java were committed [01:55:24] [main/INFO] [mixin-transmog/]: Original mixin transformation service successfully crobbed by mixin-transmogrifier! [01:55:24] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/phgc2/AppData/Roaming/PrismLauncher/instances/imersivo/minecraft/mods/Connector-1.0.0-beta.46+1.20.1.jar%23364%23367!/ Service=ModLauncher Env=CLIENT [01:55:24] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: NVIDIA GeForce GTX 1070/PCIe/SSE2 GL version 4.6.0 NVIDIA 566.14, NVIDIA Corporation [01:55:24] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\phgc2\AppData\Roaming\PrismLauncher\libraries\net\minecraftforge\fmlcore\1.20.1-47.3.0\fmlcore-1.20.1-47.3.0.jar is missing mods.toml file [01:55:24] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\phgc2\AppData\Roaming\PrismLauncher\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.3.0\javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file [01:55:24] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\phgc2\AppData\Roaming\PrismLauncher\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.3.0\lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file [01:55:24] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\phgc2\AppData\Roaming\PrismLauncher\libraries\net\minecraftforge\mclanguage\1.20.1-47.3.0\mclanguage-1.20.1-47.3.0.jar is missing mods.toml file [01:55:25] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [01:55:25] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: cloth_config. Using Mod File: C:\Users\phgc2\AppData\Roaming\PrismLauncher\instances\imersivo\minecraft\mods\cloth-config-11.1.136-forge.jar [01:55:25] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: architectury. Using Mod File: C:\Users\phgc2\AppData\Roaming\PrismLauncher\instances\imersivo\minecraft\mods\architectury-9.2.14-forge.jar [01:55:25] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 48 dependencies adding them to mods collection [01:55:26] [main/INFO] [or.si.co.lo.DependencyResolver/]: Dependency resolution found 1 candidates to load [01:55:27] [main/INFO] [or.si.co.se.ha.ModuleLayerMigrator/]: Successfully made module authlib transformable [01:55:30] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 [01:55:30] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [01:55:30] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.robertx22.mmorpg.MixinConnector] [01:55:30] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [ca.spottedleaf.starlight.mixin.MixinConnector] [01:55:30] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.robertx22.library_of_exile.MixinConnector] [01:55:30] [main/INFO] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclient' with arguments [--version, 1.20.1, --gameDir, C:\Users\phgc2\AppData\Roaming\PrismLauncher\instances\imersivo\minecraft, --assetsDir, C:\Users\phgc2\AppData\Roaming\PrismLauncher\assets, --uuid, <PROFILE ID>, --username, p3dr05009, --assetIndex, 5, --accessToken, ????????, --userType, msa, --versionType, release, --width, 854, --height, 480] [01:55:30] [main/INFO] [co.ab.sa.co.Saturn/]: Loaded Saturn config file with 4 configurable options [01:55:30] [main/INFO] [Embeddium/]: Loaded configuration file for Embeddium: 281 options available, 3 override(s) found [01:55:30] [main/INFO] [Embeddium-GraphicsAdapterProbe/]: Searching for graphics cards... [01:55:31] [main/INFO] [Embeddium-GraphicsAdapterProbe/]: Found graphics card: GraphicsAdapterInfo[vendor=NVIDIA, name=NVIDIA GeForce GTX 1070, version=DriverVersion=32.0.15.6614] [01:55:31] [main/WARN] [Embeddium-Workarounds/]: Embeddium has applied one or more workarounds to prevent crashes or other issues on your system: [NVIDIA_THREADED_OPTIMIZATIONS] [01:55:31] [main/WARN] [Embeddium-Workarounds/]: 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. [01:55:31] [main/WARN] [mixin/]: Reference map 'morevillagers-forge-forge-refmap.json' for morevillagers.mixins.json could not be read. If this is a development environment you can ignore this message [01:55:31] [main/WARN] [mixin/]: Reference map 'expanded_ecosphere-forge-refmap.json' for wwoo.mixins.json could not be read. If this is a development environment you can ignore this message [01:55:31] [main/WARN] [mixin/]: Reference map 'yungsextras.refmap.json' for yungsextras.mixins.json could not be read. If this is a development environment you can ignore this message [01:55:31] [main/WARN] [mixin/]: Reference map 'yungsextras.refmap.json' for yungsextras_forge.mixins.json could not be read. If this is a development environment you can ignore this message [01:55:31] [main/INFO] [Radium Config/]: Loaded configuration file for Radium: 125 options available, 1 override(s) found [01:55:31] [main/WARN] [mixin/]: Reference map 'graveyard-FORGE-forge-refmap.json' for graveyard-forge.mixins.json could not be read. If this is a development environment you can ignore this message [01:55:31] [main/WARN] [mixin/]: Reference map 'waves.refmap.json' for waves.mixins.json could not be read. If this is a development environment you can ignore this message [01:55:31] [main/WARN] [mixin/]: Reference map 'cristellib-forge-refmap.json' for cristellib.mixins.json could not be read. If this is a development environment you can ignore this message [01:55:32] [main/WARN] [mixin/]: Reference map 'more_beautiful_torches.refmap.json' for forge-more_beautiful_torches.forge.mixins.json could not be read. If this is a development environment you can ignore this message [01:55:32] [main/INFO] [BadOptimizations/]: Loading config file [01:55:32] [main/INFO] [BadOptimizations/]: Config version: 4 [01:55:32] [main/INFO] [BadOptimizations/]: BadOptimizations config dump: [01:55:32] [main/INFO] [BadOptimizations/]: enable_toast_optimizations: true [01:55:32] [main/INFO] [BadOptimizations/]: ignore_mod_incompatibilities: false [01:55:32] [main/INFO] [BadOptimizations/]: lightmap_time_change_needed_for_update: 80 [01:55:32] [main/INFO] [BadOptimizations/]: enable_lightmap_caching: true [01:55:32] [main/INFO] [BadOptimizations/]: enable_particle_manager_optimization: true [01:55:32] [main/INFO] [BadOptimizations/]: enable_entity_renderer_caching: true [01:55:32] [main/INFO] [BadOptimizations/]: log_config: true [01:55:32] [main/INFO] [BadOptimizations/]: enable_remove_redundant_fov_calculations: true [01:55:32] [main/INFO] [BadOptimizations/]: config_version: 4 [01:55:32] [main/INFO] [BadOptimizations/]: enable_sky_angle_caching_in_worldrenderer: true [01:55:32] [main/INFO] [BadOptimizations/]: enable_block_entity_renderer_caching: true [01:55:32] [main/INFO] [BadOptimizations/]: skycolor_time_change_needed_for_update: 3 [01:55:32] [main/INFO] [BadOptimizations/]: enable_entity_flag_caching: true [01:55:32] [main/INFO] [BadOptimizations/]: enable_debug_renderer_disable_if_not_needed: true [01:55:32] [main/INFO] [BadOptimizations/]: enable_sky_color_caching: true [01:55:32] [main/INFO] [BadOptimizations/]: enable_remove_tutorial_if_not_demo: true [01:55:32] [main/INFO] [BadOptimizations/]: show_f3_text: true [01:55:32] [main/WARN] [mixin/]: Reference map '' for adapter.init.mixins.json could not be read. If this is a development environment you can ignore this message [01:55:32] [main/ERROR] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Error occurred applying transform of coremod wings_core.js function CameraTransformer org.openjdk.nashorn.internal.runtime.ECMAException: Failed to find instruction at org.openjdk.nashorn.internal.runtime.ECMAException.create(ECMAException.java:113) ~[nashorn-core-15.3.jar:?] {} at org.openjdk.nashorn.internal.scripts.Script$Recompilation$110$11045A$\^eval\_.L:3#atFirst#L:363#L:364(<eval>:372) ~[?:?] {} at org.openjdk.nashorn.internal.scripts.Script$Recompilation$100$10134ADA$\^eval\_.L:3#addTransformer-1#L:333#L:337(<eval>:338) ~[?:?] {} at org.openjdk.nashorn.internal.objects.NativeArray$4.forEach(NativeArray.java:1549) ~[nashorn-core-15.3.jar:?] {} at org.openjdk.nashorn.internal.runtime.arrays.IteratorAction.apply(IteratorAction.java:110) ~[nashorn-core-15.3.jar:?] {} at org.openjdk.nashorn.internal.objects.NativeArray.forEach(NativeArray.java:1552) ~[nashorn-core-15.3.jar:?] {} at org.openjdk.nashorn.internal.scripts.Script$Recompilation$99$9855A$\^eval\_.L:3#addTransformer-1#L:333(<eval>:337) ~[?:?] {} at org.openjdk.nashorn.internal.scripts.Script$Recompilation$98$8862ADA$\^eval\_.L:3#addTransformer#transformer#L:302(<eval>:303) ~[?:?] {} at org.openjdk.nashorn.internal.objects.NativeArray$4.forEach(NativeArray.java:1549) ~[nashorn-core-15.3.jar:?] {} at org.openjdk.nashorn.internal.runtime.arrays.IteratorAction.apply(IteratorAction.java:110) ~[nashorn-core-15.3.jar:?] {} at org.openjdk.nashorn.internal.objects.NativeArray.forEach(NativeArray.java:1552) ~[nashorn-core-15.3.jar:?] {} at org.openjdk.nashorn.internal.scripts.Script$Recompilation$97$8809A$\^eval\_.L:3#addTransformer#transformer(<eval>:302) ~[?:?] {} at org.openjdk.nashorn.internal.runtime.ScriptFunctionData.invoke(ScriptFunctionData.java:648) ~[nashorn-core-15.3.jar:?] {} at org.openjdk.nashorn.internal.runtime.ScriptFunction.invoke(ScriptFunction.java:513) ~[nashorn-core-15.3.jar:?] {} at org.openjdk.nashorn.internal.runtime.ScriptRuntime.apply(ScriptRuntime.java:520) ~[nashorn-core-15.3.jar:?] {} at org.openjdk.nashorn.api.scripting.ScriptObjectMirror.call(ScriptObjectMirror.java:111) ~[nashorn-core-15.3.jar:?] {} at net.minecraftforge.coremod.NashornFactory.lambda$getFunction$0(NashornFactory.java:22) ~[coremods-5.1.6.jar:5.1.6] {} at net.minecraftforge.coremod.transformer.CoreModClassTransformer.runCoremod(CoreModClassTransformer.java:22) ~[coremods-5.1.6.jar:?] {} at net.minecraftforge.coremod.transformer.CoreModClassTransformer.runCoremod(CoreModClassTransformer.java:14) ~[coremods-5.1.6.jar:?] {} at net.minecraftforge.coremod.transformer.CoreModBaseTransformer.transform(CoreModBaseTransformer.java:42) ~[coremods-5.1.6.jar:?] {} at cpw.mods.modlauncher.TransformerHolder.transform(TransformerHolder.java:41) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.ClassTransformer.performVote(ClassTransformer.java:179) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:117) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.cl.ModuleClassLoader.getMaybeTransformedClassBytes(ModuleClassLoader.java:250) ~[securejarhandler-2.1.10.jar:?] {} at cpw.mods.modlauncher.TransformingClassLoader.buildTransformedClassNodeFor(TransformingClassLoader.java:58) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.LaunchPluginHandler.lambda$announceLaunch$10(LaunchPluginHandler.java:100) ~[modlauncher-10.0.9.jar:?] {} at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.getClassNode(MixinLaunchPluginLegacy.java:222) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.getClassNode(MixinLaunchPluginLegacy.java:207) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.ClassInfo.forName(ClassInfo.java:2056) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinInfo.getTargetClass(MixinInfo.java:1018) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinInfo.readTargetClasses(MixinInfo.java:1008) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinInfo.parseTargets(MixinInfo.java:896) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinConfig.prepareMixins(MixinConfig.java:869) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinConfig.prepare(MixinConfig.java:781) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinProcessor.prepareConfigs(MixinProcessor.java:540) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinProcessor.select(MixinProcessor.java:462) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinProcessor.checkSelect(MixinProcessor.java:438) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:290) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) ~[modlauncher-10.0.9.jar:10.0.9+10.0.9+main.dcd20f30] {} at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?] {} at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?] {} at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?] {} at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] {} at java.lang.Class.forName0(Native Method) ~[?:?] {} at java.lang.Class.forName(Class.java:467) ~[?:?] {} at org.sinytra.connector.service.ConnectorLoaderService$1.lambda$updateModuleReads$0(ConnectorLoaderService.java:65) ~[Connector-1.0.0-beta.46+1.20.1.jar%23364!/:1.0.0-beta.46+1.20.1] {} at cpw.mods.modlauncher.api.LamdbaExceptionUtils.uncheck(LamdbaExceptionUtils.java:95) ~[modlauncher-10.0.9.jar%23140!/:10.0.9+10.0.9+main.dcd20f30] {} at org.sinytra.connector.service.ConnectorLoaderService$1.updateModuleReads(ConnectorLoaderService.java:65) ~[Connector-1.0.0-beta.46+1.20.1.jar%23364!/:1.0.0-beta.46+1.20.1] {} at net.minecraftforge.fml.loading.ImmediateWindowHandler.acceptGameLayer(ImmediateWindowHandler.java:71) ~[fmlloader-1.20.1-47.3.0.jar:1.0] {} at net.minecraftforge.fml.loading.FMLLoader.beforeStart(FMLLoader.java:207) ~[fmlloader-1.20.1-47.3.0.jar:1.0] {} at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.launchService(CommonLaunchHandler.java:92) ~[fmlloader-1.20.1-47.3.0.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} 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 io.github.zekerzhayard.forgewrapper.installer.Main.main(Main.java:67) ~[?:?] {} at org.prismlauncher.launcher.impl.StandardLauncher.launch(StandardLauncher.java:105) ~[?:?] {} at org.prismlauncher.EntryPoint.listen(EntryPoint.java:129) ~[?:?] {} at org.prismlauncher.EntryPoint.main(EntryPoint.java:70) ~[?:?] {} [01:55:33] [main/INFO] [ne.mi.co.Co.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [01:55:33] [main/INFO] [ne.mi.co.Co.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [01:55:33] [main/WARN] [mixin/]: Error loading class: vazkii/quark/base/module/ModuleFinder (java.lang.ClassNotFoundException: vazkii.quark.base.module.ModuleFinder) [01:55:33] [main/WARN] [debug/]: dzwdz.chat_heads.mixin.ChatComponentMixin false false [01:55:33] [main/WARN] [debug/]: dzwdz.chat_heads.mixin.ChatComponentMixin2 false false [01:55:33] [main/WARN] [debug/]: dzwdz.chat_heads.mixin.ChatListenerMixin false false [01:55:33] [main/WARN] [debug/]: dzwdz.chat_heads.mixin.ClientPacketListenerMixin false false [01:55:33] [main/WARN] [debug/]: dzwdz.chat_heads.mixin.CommandSuggestionSuggestionsListMixin false false [01:55:33] [main/WARN] [debug/]: dzwdz.chat_heads.mixin.ConnectionMixin false false [01:55:33] [main/WARN] [debug/]: dzwdz.chat_heads.mixin.DownloadedPackSourceMixin false false [01:55:33] [main/WARN] [debug/]: dzwdz.chat_heads.mixin.FontStringRenderOutputMixin false false [01:55:33] [main/WARN] [debug/]: dzwdz.chat_heads.mixin.GuiMessageLineMixin false false [01:55:33] [main/WARN] [debug/]: dzwdz.chat_heads.mixin.GuiMessageMixin false false [01:55:33] [main/WARN] [debug/]: dzwdz.chat_heads.mixin.HttpTextureMixin false false [01:55:33] [main/WARN] [debug/]: dzwdz.chat_heads.mixin.PlayerChatMessageMixin false false [01:55:33] [main/WARN] [debug/]: dzwdz.chat_heads.mixin.SkinManagerMixin false false [01:55:33] [main/WARN] [debug/]: dzwdz.chat_heads.mixin.compat.EmojifulMixin true false [01:55:33] [main/WARN] [mixin/]: Error loading class: vazkii/neat/HealthBarRenderer (java.lang.ClassNotFoundException: vazkii.neat.HealthBarRenderer) [01:55:33] [main/WARN] [mixin/]: @Mixin target vazkii.neat.HealthBarRenderer was not found autoleveling.mixins.json:neat/HealthBarRendererMixin from mod autoleveling [01:55:33] [main/WARN] [mixin/]: Error loading class: vectorwing/farmersdelight/common/block/TomatoVineBlock (java.lang.ClassNotFoundException: vectorwing.farmersdelight.common.block.TomatoVineBlock) [01:55:33] [main/WARN] [mixin/]: Error loading class: mekanism/client/render/entity/RenderFlame (java.lang.ClassNotFoundException: mekanism.client.render.entity.RenderFlame) [01:55:33] [main/WARN] [mixin/]: Error loading class: mekanism/client/render/armor/MekaSuitArmor (java.lang.ClassNotFoundException: mekanism.client.render.armor.MekaSuitArmor) [01:55:33] [main/WARN] [Radium Config/]: Force-disabling mixin 'alloc.blockstate.StateMixin' as option 'mixin.alloc.blockstate' (added by mods [ferritecore]) disables it and children [01:55:34] [main/INFO] [co.cu.Cupboard/]: Loaded config for: betterfpsdist.json [01:55:34] [main/WARN] [mixin/]: Error loading class: dev/emi/emi/screen/EmiScreenManager (java.lang.ClassNotFoundException: dev.emi.emi.screen.EmiScreenManager) [01:55:34] [main/WARN] [mixin/]: Error loading class: me/shedaniel/rei/impl/client/gui/ScreenOverlayImpl (java.lang.ClassNotFoundException: me.shedaniel.rei.impl.client.gui.ScreenOverlayImpl) [01:55:34] [main/WARN] [mixin/]: Error loading class: net/fabricmc/fabric/impl/datagen/FabricDataGenHelper (java.lang.ClassNotFoundException: net.fabricmc.fabric.impl.datagen.FabricDataGenHelper) [01:55:34] [main/WARN] [mixin/]: Error loading class: mezz/modnametooltip/TooltipEventHandler (java.lang.ClassNotFoundException: mezz.modnametooltip.TooltipEventHandler) [01:55:34] [main/WARN] [mixin/]: Error loading class: me/shedaniel/rei/impl/client/ClientHelperImpl (java.lang.ClassNotFoundException: me.shedaniel.rei.impl.client.ClientHelperImpl) [01:55:34] [main/WARN] [mixin/]: Error loading class: vazkii/quark/addons/oddities/inventory/BackpackMenu (java.lang.ClassNotFoundException: vazkii.quark.addons.oddities.inventory.BackpackMenu) [01:55:35] [main/INFO] [memoryleakfix/]: [MemoryLeakFix] Will be applying 3 memory leak fixes! [01:55:35] [main/INFO] [memoryleakfix/]: [MemoryLeakFix] Currently enabled memory leak fixes: [targetEntityLeak, biomeTemperatureLeak, hugeScreenshotLeak] [01:55:35] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.world.sky.WorldRendererMixin' as rule 'mixin.features.render.world.sky' (added by mods [oculus]) disables it and children [01:55:35] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.world.sky.ClientWorldMixin' as rule 'mixin.features.render.world.sky' (added by mods [oculus]) disables it and children [01:55:35] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.world.sky.BackgroundRendererMixin' as rule 'mixin.features.render.world.sky' (added by mods [oculus]) disables it and children [01:55:35] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.gui.font.GlyphRendererMixin' as rule 'mixin.features.render.gui.font' (added by mods [oculus]) disables it and children [01:55:35] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.gui.font.FontSetMixin' as rule 'mixin.features.render.gui.font' (added by mods [oculus]) disables it and children [01:55:35] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.entity.shadows.EntityRenderDispatcherMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [01:55:35] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.entity.remove_streams.ModelPartMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [01:55:35] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.entity.remove_streams.HierarchicalModelMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [01:55:35] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.entity.fast_render.ModelPartMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [01:55:35] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.entity.fast_render.CuboidMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [01:55:35] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.entity.cull.EntityRendererMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [01:55:35] [main/WARN] [mixin/]: Error loading class: org/jetbrains/annotations/ApiStatus$Internal (java.lang.ClassNotFoundException: org.jetbrains.annotations.ApiStatus$Internal) [01:55:35] [main/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). [01:55:37] [main/INFO] [ne.mi.co.Co.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [01:55:37] [main/INFO] [ne.mi.co.Co.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [01:55:37] [main/WARN] [mixin/]: @Inject(@At("INVOKE_ASSIGN")) Shift.BY=3 on jeed-common.mixins.json:EffectsRenderingInventoryScreenMixin from mod jeed::handler$dei000$jeed$captureEffect exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. [01:55:37] [pool-4-thread-1/WARN] [mixin/]: Method overwrite conflict for m_6104_ in embeddium.mixins.json:features.options.render_layers.LeavesBlockMixin from mod embeddium, previously written by me.srrapero720.embeddiumplus.mixins.impl.leaves_culling.LeavesBlockMixin. Skipping method. [01:55:38] [pool-4-thread-1/INFO] [ne.mi.co.Co.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [01:55:38] [pool-4-thread-1/INFO] [ne.mi.co.Co.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [01:55:39] [pool-4-thread-1/WARN] [mixin/]: Method overwrite conflict for scheduleRandomTick in corgilib-common.mixins.json:chunk.MixinChunkAccess from mod corgilib, previously written by dev.corgitaco.ohthetreesyoullgrow.mixin.chunk.MixinChunkAccess. Skipping method. [01:55:39] [pool-4-thread-1/WARN] [mixin/]: Method overwrite conflict for getScheduledRandomTicks in corgilib-common.mixins.json:chunk.MixinChunkAccess from mod corgilib, previously written by dev.corgitaco.ohthetreesyoullgrow.mixin.chunk.MixinChunkAccess. Skipping method. [01:55:39] [Datafixer Bootstrap/INFO] [mojang/DataFixerBuilder]: 188 Datafixer optimizations took 104 milliseconds [01:55:39] [pool-4-thread-1/INFO] [mixin/]: savage_and_ravage.mixins.json:RaiderAccessor from mod savage_and_ravage->@Accessor[FIELD_GETTER]::getIsCelebrating()Lnet/minecraft/network/syncher/EntityDataAccessor; should be static as its target is [01:55:40] [pool-4-thread-1/WARN] [mixin/]: @Final field f_26027_:Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; in guardvillagers.mixins.json:DefendVillageGoalGolemMixin from mod guardvillagers should be final [01:55:40] [pool-4-thread-1/WARN] [mixin/]: Static binding violation: PRIVATE @Overwrite method m_135379_ in lithium.mixins.json:entity.data_tracker.use_arrays.DataTrackerMixin from mod radium cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. Exception caught from launcher java.lang.reflect.InvocationTargetException at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at io.github.zekerzhayard.forgewrapper.installer.Main.main(Main.java:67) at org.prismlauncher.launcher.impl.StandardLauncher.launch(StandardLauncher.java:105) at org.prismlauncher.EntryPoint.listen(EntryPoint.java:129) at org.prismlauncher.EntryPoint.main(EntryPoint.java:70) Caused by: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:32) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:108) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:78) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) at [email protected]/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ... 8 more Caused by: java.lang.reflect.InvocationTargetException at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ... 15 more Caused by: java.lang.RuntimeException: java.lang.NoClassDefFoundError: net/fabricmc/fabric/api/item/v1/FabricItemSettings at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.BackgroundWaiter.runAndTick(BackgroundWaiter.java:32) at TRANSFORMER/[email protected]/net.minecraft.client.main.Main.main(Main.java:151) ... 23 more Caused by: java.lang.NoClassDefFoundError: net/fabricmc/fabric/api/item/v1/FabricItemSettings at TRANSFORMER/[email protected]/net.minecraft.world.entity.vehicle.Boat$Type.handler$bho000$eldritch_end$addCustomBoatType(Boat.java:1020) at TRANSFORMER/[email protected]/net.minecraft.world.entity.vehicle.Boat$Type.<clinit>(Boat.java:885) at TRANSFORMER/[email protected]/net.minecraft.world.item.Items.<clinit>(Items.java:757) at TRANSFORMER/[email protected]/net.minecraft.world.level.block.ComposterBlock.m_51988_(ComposterBlock.java:60) at TRANSFORMER/[email protected]/net.minecraft.server.Bootstrap.m_135870_(Bootstrap.java:47) at TRANSFORMER/[email protected]/net.minecraft.client.main.Main.lambda$main$0(Main.java:151) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:833) Caused by: java.lang.ClassNotFoundException: net.fabricmc.fabric.api.item.v1.FabricItemSettings at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:137) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:137) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) ... 11 more Exiting with ERROR Process exited with code 2. Can Someone Help Solve This Problem ?
    • Hello, thank you for viewing my topic, this is what I want your help with: i've been wanting to make my own mod but time doesnt allow it because im just in high school and very busy with exams. what i want to create is a mod related to magic and sorcery with spells that affect the environment (eg: a spell that creates a ring of fire) i know its bullshit but i want to do it, can you help me by commenting information you know or related documents about my idea and again thank you guys           ||in my country, a school year is divided into 2 semesters and recently i finished semester 1, taking advantage of this small break to learn java and programming, i know its not enough but every little bit is good ||   btw this is my first time writing like this plus my english skill, it makes this topic become corny
    • I canot use any mods they wont pop up i have watched like very vid on it
    • I've been trying to open minecraft for a while now and I don't know what happens. Sometimes it loads all mods with no problem and starts, but when I try to join a server with friends it crashes; The rest of the time it just freezes when it's loading registries and crashes again, I'm just tired of it Here is the crash report in different links: https://paste.ee/p/dWYBm4Us https://mclo.gs/Qh11YiV
    • Forge only supports Java Edition, you'll need to ask elsewhere for Pocket Edition support. Also, don't post in unrelated topics. I've split your post into its own topic.
  • Topics

×
×
  • Create New...

Important Information

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