Jump to content

Unable to get modloader mods to work in forge 241.


keybounce

Recommended Posts

I am unable to get modloader mods to work in forge 241.

 

Symptoms:

1. FML reports all mods as version 1.0

2. Server reports that I connect with no mods.

3. Log file shows no version information available.

 

4. Mods do work. However, mods that communicate with the server -- Superior Enchantment -- fail to be recognized on the server.

 

Here is my client launch script:

 

#!/bin/sh

MEM=250m	# 12w27a ran out at 200
	#
USER=keybounce
PASSWORD_HASH=-7622254910798163513
# Actually, seems to be session sensitive. Not sure when Mojang's servers time-out a session.
MCP="$HOME"/"Documents/games/minecraft/Tools/MagicLauncher.app/Contents/Resources/Java/MagicLauncher.jar" 

# Note that the mod list is backwards; the _bottom_ of the list (last one) goes first. Modloader goes
# at the end of this list, yet at the beginning of the screen listing.

ModDir="$HOME/Documents/Games/Minecraft/Playing/Mods/132"
JarDir="$HOME/Documents/Games/Minecraft/Playing/Jars"
Lwjgl="\
bin/lwjgl/jinput.jar;\
bin/lwjgl/lwjgl.jar;\
bin/lwjgl/lwjgl_util.jar;\
"
Lwjgl="\
bin/jinput.jar;\
bin/lwjgl.jar;\
bin/lwjgl_util.jar;\
"

Lwjgl_notused="\
bin/lwjgl/lzma.jar\
bin/lwjgl/AppleJavaExtensions.jar;\
bin/lwjgl/lwjgl-debug.jar;\
bin/lwjgl/lwjgl_test.jar;\
bin/lwjgl/asm-debug-all.jar;\
bin/lwjgl/lwjgl_util_applet.jar;\
"


# All single player, no longer used ...
SSP_MODS="\
$ModDir/Somnia v23-125.zip;\
/Users/michael/Documents/games/minecraft/Mods/124/Timber-124.zip;\
$ModDir/Shelf-125.zip;\
/Users/michael/Documents/games/minecraft/Mods/124/ClaySoil-124.zip;\
$ModDir/Biosphere-125.zip;\
$ModDir/WMLLStable23125.zip;\
$ModDir/SinglePlayerCommands-MC1.2.5_V3.2.2.zip;\
$ModDir/SaturationBar-125.zip;\
$ModDir/WMLLTest73412w27a.zip;\
$ModDir/mod_MumbleLink.class.zip;\

$ModDir/minecraftforge-universal-4.0.0.241.zip;\
"

MODS="\
$ModDir/MineVideoV1.2_2.zip;\
$ModDir/OptiFine_1.3.2_HD_U_B3.zip;\
$ModDir/ImprovedLogPlacing-132.zip;\
$ModDir/JustDW_2.3.2.zip;\
$ModDir/Mumblelink-252-132.zip;\
$ModDir/Superior_Enchanting-132.zip;\
$ModDir/TooManyItems2012_08_16_1.3.2.zip;\
$ModDir/WMLLStable32132.zip;\
$ModDir/ModLoader-132.zip;\
$JarDir/minecraft-132.jar;\
"

JAVA_OPTS="-Dsun.java2d.noddraw=true -Dsun.java2d.d3d=false -Dsun.java2d.opengl=false -Dsun.java2d.pmoffscreen=false -Djava.library.path=bin/natives"
# JAVA_OPTS is used unquoted so that the spaces will break it into separate options.
# Other filenames may have spaces and must be quoted.

CLASS=net.minecraft.client.Minecraft

cd ~/Library/Application\ Support/minecraft/
echo java -Xms128m -Xmx$MEM $JAVA_OPTS -cp "$MCP" magic.launcher.Launcher -lcp="$MODS;$Lwjgl" -showLog $CLASS $USER $PASSWORD_HASH
     java -Xms128m -Xmx$MEM $JAVA_OPTS -cp "$MCP" magic.launcher.Launcher -lcp="$MODS;$Lwjgl" -showLog $CLASS $USER $PASSWORD_HASH

 

 

Note that I switched out forge for modloader; things worked with modloader.

 

Here is the server-side creation/mod list:

 

 

#!/bin/sh
# Simple script to assemble the parts of a minecraft server.

# Where the files are located.
# Dated -- this is based on 125 when server and client used different mods.
# As more mods switch to universal, seperate 132smp and 132ssp directories becomes redundant.
ModDir="$HOME"/Documents/Games/Minecraft/Playing/Mods/132smp
JarDir="$HOME"/Documents/Games/Minecraft/Playing/Jars

# These mods are not yet up to 132.
# unzip "$ModDir"/ClaySoil_Server_125.zip
# unzip "$ModDir"/mystcraft-server-1.2.5-0.9.1.02-Forge-3.3.8.152.zip 
# unzip "$ModDir"/extrabiomes-2.2.7-cs-fix2-smp.zip
# unzip "$ModDir"/bunyan-1.5-smp.zip 

# For the server, we have two different sets of mods to assemble: Jar mods and Mod-folder mods.

# Jar mods:
TMPDIR=`mktemp -d server.jar.XXX` || exit 1
cd $TMPDIR
unzip "$JarDir"/minecraft_server-132.jar
## unzip "$ModDir"/minecraftforge-universal-4.0.0.241.zip
unzip "$ModDir"/FallFix_1_3_2.zip
## unzip "$ModDir"/ImprovedLogPlacing-132.zip
unzip "$ModDir"/ImprovedLog-132-noforge.zip
unzip "$ModDir"/MoreVillageBiomes-V2-132-smp.zip
unzip "$ModDir"/SuperiorEnchantment-132smp.zip
unzip "$ModDir"/WaterPropogationFix_132.zip
mv ../new_server.jar ../new_server.jar.old
zip -r ../new_server.jar *
cd ..

# Now for the Mod folder. 
# We have to clear the mod folder out all the time -- leftover files there are the biggest cause
# of problems. 
#
# I'd love to just blow away the mods folder completely, but some mods need various resources
# in there, that are meant to be customized by you. So they have to stay around.
#
# Bottom line: We remove the .zip files from the top level of the mods folder, and leave
# everything else -- config files, resource files -- for mods to keep.

TMPMOD=`mktemp -d mods.XXX` || exit 1
mv -f mods/*.zip $TMPMOD
cp "$ModDir"/twilightforest-1.11.3.zip mods
cp "$ModDir"/Ruins-1.3.2.zip mods

echo Done, leftover junk in $TMPDIR, old mods in $TMPMOD

 

 

(Yes, I know that the two mod directory server mods are not being used. That's not the point).

 

Client side logs: Modloader (mods work and talk to the server)

 

 

Sep 3, 2012 6:34:02 PM ModLoader init

FINE: ModLoader 1.3.2 Initializing...

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Adding mods from /Volumes/UserData/Users/michael/Library/Application Support/minecraft/bin/lwjgl_util.jar

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Zip found.

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Adding mods from /Volumes/UserData/Users/michael/Library/Application Support/minecraft/bin/lwjgl.jar

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Zip found.

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Adding mods from /Volumes/UserData/Users/michael/Library/Application Support/minecraft/bin/jinput.jar

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Zip found.

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Jars/minecraft-132.jar

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Zip found.

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/ModLoader-132.zip

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Zip found.

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/WMLLStable32132.zip

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Zip found.

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/TooManyItems2012_08_16_1.3.2.zip

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Zip found.

Sep 3, 2012 6:34:03 PM ModLoader addMod

FINE: Mod Initialized: "mod_TooManyItems 1.3.2 2012-08-16" from mod_TooManyItems.class

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/Superior_Enchanting-132.zip

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Zip found.

Sep 3, 2012 6:34:03 PM ModLoader addMod

FINE: Mod Initialized: "mod_521_magicalRepair 1.4" from mod_521_magicalRepair.class

Sep 3, 2012 6:34:03 PM ModLoader addMod

FINE: Mod Initialized: "mod_521_superior_enchanting 1.13.3" from mod_521_superior_enchanting.class

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/Mumblelink-252-132.zip

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Zip found.

Sep 3, 2012 6:34:03 PM ModLoader addMod

FINE: Mod Initialized: "mod_MumbleLink 2.5.2" from mod_MumbleLink.class

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/JustDW_2.3.2.zip

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Zip found.

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/ImprovedLogPlacing-132.zip

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Zip found.

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/OptiFine_1.3.2_HD_U_B3.zip

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Zip found.

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/MineVideoV1.2_2.zip

Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath

FINER: Zip found.

Sep 3, 2012 6:34:05 PM ModLoader addMod

FINE: Mod Initialized: "mod_MineVideo 1.3.1" from mod_MineVideo.class

Sep 3, 2012 6:34:05 PM ModLoader readFromClassPath

FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/ModLoader-132.zip

Sep 3, 2012 6:34:05 PM ModLoader readFromClassPath

FINER: Zip found.

Sep 3, 2012 6:34:06 PM ModLoader readFromModFolder

FINER: Adding mods from /Volumes/UserData/Users/michael/Library/Application Support/minecraft/mods/MumbleLink

Sep 3, 2012 6:34:06 PM ModLoader readFromModFolder

FINER: Directory found.

Sep 3, 2012 6:34:06 PM ModLoader readFromModFolder

FINER: Adding mods from /Volumes/UserData/Users/michael/Library/Application Support/minecraft/mods/resources

Sep 3, 2012 6:34:06 PM ModLoader readFromModFolder

FINER: Directory found.

Sep 3, 2012 6:34:06 PM ModLoader readFromModFolder

FINER: Adding mods from /Volumes/UserData/Users/michael/Library/Application Support/minecraft/mods/sppcommands

Sep 3, 2012 6:34:06 PM ModLoader readFromModFolder

FINER: Directory found.

Sep 3, 2012 6:34:06 PM ModLoader init

FINE: Mod Loaded: "mod_TooManyItems 1.3.2 2012-08-16"

Sep 3, 2012 6:34:06 PM ModLoader init

FINE: Mod Loaded: "mod_521_magicalRepair 1.4"

Sep 3, 2012 6:34:06 PM ModLoader init

FINE: Mod Loaded: "mod_521_superior_enchanting 1.13.3"

Sep 3, 2012 6:34:06 PM ModLoader init

FINE: Mod Loaded: "mod_MumbleLink 2.5.2"

Sep 3, 2012 6:34:06 PM ModLoader init

FINE: Mod Loaded: "mod_MineVideo 1.3.1"

Sep 3, 2012 6:34:06 PM ModLoader addAllRenderers

FINE: Initialized

 

 

 

(Minevideo IS the 1.3.2 version; the mod author did not update the text string.)

 

Client side logs, forge modloader

 

 

2012-09-03 17:07:44 [iNFO] [ForgeModLoader] Forge Mod Loader version 3.0.165.344 for Minecraft client:1.3.2, server:1.3.2 loading

2012-09-03 17:07:44 [FINEST] [ForgeModLoader] All core mods are successfully located

2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Discovering coremods

2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Found library file argo-2.25.jar present and correct in lib dir

 

2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Found library file guava-12.0.1.jar present and correct in lib dir

 

2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Found library file asm-all-4.0.jar present and correct in lib dir

 

2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Running coremod plugins

2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin

2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully

2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin

2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully

2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Validating minecraft

2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Minecraft validated, launching...

2012-09-03 17:07:46 [iNFO] [sTDOUT] 27 achievements

2012-09-03 17:07:46 [iNFO] [sTDOUT] 195 recipes

2012-09-03 17:07:46 [iNFO] [sTDOUT] Setting user: keybounce, -7622254910798163513

2012-09-03 17:07:46 [iNFO] [sTDERR] Client asked for parameter: server

2012-09-03 17:07:46 [iNFO] [sTDOUT] LWJGL Version: 2.4.2

2012-09-03 17:07:46 [iNFO] [sTDOUT] OptiFine_1.3.2_HD_U_B3

2012-09-03 17:07:46 [iNFO] [sTDOUT] Mon Sep 03 17:07:46 PDT 2012

2012-09-03 17:07:46 [iNFO] [sTDOUT] OS: Mac OS X (x86_64) version 10.7.4

2012-09-03 17:07:46 [iNFO] [sTDOUT] Java: 1.6.0_33, Apple Inc.

2012-09-03 17:07:46 [iNFO] [sTDOUT] VM: Java HotSpot 64-Bit Server VM (mixed mode), Apple Inc.

2012-09-03 17:07:46 [iNFO] [sTDOUT] LWJGL: 2.4.2

2012-09-03 17:07:46 [iNFO] [sTDOUT] OpenGL: Intel HD Graphics 3000 OpenGL Engine version 2.1 APPLE-7.18.18, Intel Inc.

2012-09-03 17:07:46 [iNFO] [sTDOUT] OpenGL Version: 2.1

2012-09-03 17:07:46 [iNFO] [sTDOUT] Checking for new version

2012-09-03 17:07:46 [iNFO] [sTDOUT] setupTexture: "/title/mojang.png", id: 1

2012-09-03 17:07:46 [iNFO] [sTDOUT] Version found: B3

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] Attempting early MinecraftForge initialization

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] Completed early MinecraftForge initialization

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] Forge Mod Loader has detected optifine OptiFine_1.3.2_HD_U_B3, enabling compatibility features

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer]

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/MineVideoV1.2_2.zip, examining for mod candidates

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/OptiFine_1.3.2_HD_U_B3.zip, examining for mod candidates

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/ImprovedLogPlacing-132.zip, examining for mod candidates

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/JustDW_2.3.2.zip, examining for mod candidates

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/Mumblelink-252-132.zip, examining for mod candidates

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/Superior_Enchanting-132.zip, examining for mod candidates

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/TooManyItems2012_08_16_1.3.2.zip, examining for mod candidates

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/WMLLStable32132.zip, examining for mod candidates

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/minecraftforge-universal-4.0.0.241.zip, examining for mod candidates

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Jars/minecraft-132.jar, examining for mod candidates

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Skipping known library file /Volumes/UserData/Users/michael/Library/Application Support/minecraft/bin/jinput.jar

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Skipping known library file /Volumes/UserData/Users/michael/Library/Application Support/minecraft/bin/lwjgl.jar

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Skipping known library file /Volumes/UserData/Users/michael/Library/Application Support/minecraft/bin/lwjgl_util.jar

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Skipping known library file /Volumes/UserData/Users/michael/Library/Application Support/minecraft/lib/argo-2.25.jar

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Skipping known library file /Volumes/UserData/Users/michael/Library/Application Support/minecraft/lib/guava-12.0.1.jar

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Skipping known library file /Volumes/UserData/Users/michael/Library/Application Support/minecraft/lib/asm-all-4.0.jar

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] Searching /Volumes/UserData/Users/michael/Library/Application Support/minecraft/mods for mods

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Ignoring unknown file .DS_Store in mods directory

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a candidate mod directory MumbleLink

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a candidate mod directory resources

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a candidate mod directory sppcommands

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file MineVideoV1.2_2.zip for potential mods

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container MineVideoV1.2_2.zip appears to be missing an mcmod.info file

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Identified a BaseMod type mod mod_MineVideo

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file OptiFine_1.3.2_HD_U_B3.zip for potential mods

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container OptiFine_1.3.2_HD_U_B3.zip appears to be missing an mcmod.info file

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file ImprovedLogPlacing-132.zip for potential mods

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container ImprovedLogPlacing-132.zip appears to be missing an mcmod.info file

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file JustDW_2.3.2.zip for potential mods

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container JustDW_2.3.2.zip appears to be missing an mcmod.info file

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file Mumblelink-252-132.zip for potential mods

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container Mumblelink-252-132.zip appears to be missing an mcmod.info file

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Identified a BaseMod type mod mod_MumbleLink

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file Superior_Enchanting-132.zip for potential mods

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container Superior_Enchanting-132.zip appears to be missing an mcmod.info file

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Identified a BaseMod type mod mod_521_magicalRepair

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Identified a BaseMod type mod mod_521_superior_enchanting

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file TooManyItems2012_08_16_1.3.2.zip for potential mods

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container TooManyItems2012_08_16_1.3.2.zip appears to be missing an mcmod.info file

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Identified a BaseMod type mod mod_TooManyItems

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file WMLLStable32132.zip for potential mods

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container WMLLStable32132.zip appears to be missing an mcmod.info file

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file minecraftforge-universal-4.0.0.241.zip for potential mods

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container minecraftforge-universal-4.0.0.241.zip appears to be missing an mcmod.info file

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file minecraft-132.jar for potential mods

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container minecraft-132.jar appears to be missing an mcmod.info file

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining directory MumbleLink for potential mods

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] No mcmod.info file found in directory MumbleLink

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package natives

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining directory resources for potential mods

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] No mcmod.info file found in directory resources

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.Beach

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.DesertHills

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.Extreme Hills

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.Extreme Hills Edge

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.ForestHills

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.Jungle

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.JungleHills

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.OPTIONAL

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.TaigaHills

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.desert

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.forest

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.frozenOcean

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.frozenRiver

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.hell

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.ice Mountains

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.ice Plains

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.mushroomIsland

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.mushroomIslandShore

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.ocean

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.plains

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.river

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.sky

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.swampland

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.taiga

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining directory sppcommands for potential mods

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] No mcmod.info file found in directory sppcommands

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package jars

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package macros

2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package saves

2012-09-03 17:07:47 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 7 mods to load

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Received a system property request ''

2012-09-03 17:07:47 [FINE] [ForgeModLoader] System property request managing the state of 0 mods

2012-09-03 17:07:47 [FINE] [ForgeModLoader] After merging, found state information for 0 mods

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Activating mod FML

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Activating mod Forge

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Enabling mod mod_MineVideo

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Activating mod mod_MineVideo

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Enabling mod mod_MumbleLink

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Activating mod mod_MumbleLink

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Enabling mod mod_521_magicalRepair

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Activating mod mod_521_magicalRepair

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Enabling mod mod_521_superior_enchanting

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Activating mod mod_521_superior_enchanting

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Enabling mod mod_TooManyItems

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Activating mod mod_TooManyItems

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Verifying mod requirements are satisfied

2012-09-03 17:07:47 [FINE] [ForgeModLoader] All mod requirements are satisfied

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Sorting mods into an ordered list

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Mod sorting completed successfully

2012-09-03 17:07:47 [FINE] [ForgeModLoader] Mod sorting data:

2012-09-03 17:07:47 [FINE] [ForgeModLoader] mod_MineVideo(mod_MineVideo:Not available): MineVideoV1.2_2.zip ()

2012-09-03 17:07:47 [FINE] [ForgeModLoader] mod_MumbleLink(mod_MumbleLink:Not available): Mumblelink-252-132.zip ()

2012-09-03 17:07:47 [FINE] [ForgeModLoader] mod_521_magicalRepair(mod_521_magicalRepair:Not available): Superior_Enchanting-132.zip ()

2012-09-03 17:07:47 [FINE] [ForgeModLoader] mod_521_superior_enchanting(mod_521_superior_enchanting:Not available): Superior_Enchanting-132.zip ()

2012-09-03 17:07:47 [FINE] [ForgeModLoader] mod_TooManyItems(mod_TooManyItems:Not available): TooManyItems2012_08_16_1.3.2.zip ()

2012-09-03 17:07:47 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb to mod FML

2012-09-03 17:07:47 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb delivered to mod FML

2012-09-03 17:07:47 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb to mod Forge

2012-09-03 17:07:47 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb delivered to mod Forge

2012-09-03 17:07:47 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb to mod mod_MineVideo

2012-09-03 17:07:47 [FINE] [ForgeModLoader] No MLProp configuration for mod_MineVideo found or required. No file written

2012-09-03 17:07:48 [FINE] [ForgeModLoader] Injecting dummy network mod handler for BaseMod mod_MineVideo

2012-09-03 17:07:48 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mod_MineVideo

2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb delivered to mod mod_MineVideo

2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb to mod mod_MumbleLink

2012-09-03 17:07:48 [FINE] [ForgeModLoader] No MLProp configuration for mod_MumbleLink found or required. No file written

2012-09-03 17:07:48 [FINE] [ForgeModLoader] Injecting dummy network mod handler for BaseMod mod_MumbleLink

2012-09-03 17:07:48 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mod_MumbleLink

2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb delivered to mod mod_MumbleLink

2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb to mod mod_521_magicalRepair

2012-09-03 17:07:48 [FINE] [ForgeModLoader] No MLProp configuration for mod_521_magicalRepair found or required. No file written

2012-09-03 17:07:48 [FINE] [ForgeModLoader] Injecting dummy network mod handler for BaseMod mod_521_magicalRepair

2012-09-03 17:07:48 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mod_521_magicalRepair

2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb delivered to mod mod_521_magicalRepair

2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb to mod mod_521_superior_enchanting

2012-09-03 17:07:48 [FINE] [ForgeModLoader] No MLProp configuration for mod_521_superior_enchanting found or required. No file written

2012-09-03 17:07:48 [iNFO] [sTDOUT]        ENCHANTMENT                    LEVEL

2012-09-03 17:07:48 [iNFO] [sTDOUT]                              I    II  III  IV  V

2012-09-03 17:07:48 [iNFO] [sTDOUT] Protection                    1    12  23  34 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Fire Protection              10  18  26  34 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Feather Falling              5    11  17  23 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Blast Protection              5    13  21  29 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Projectile Protection        3    9    15  21 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Respiration                  10  20  30 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Aqua Affinity                1   

2012-09-03 17:07:48 [iNFO] [sTDOUT] Sharpness                    1    12  23  34  45 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Smite                        5    13  21  29  37 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Bane of Arthropods            5    13  21  29  37 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Knockback                    5    25 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Fire Aspect                  10  30 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Looting                      15  24  33 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Efficiency                    1    11  21  31  41 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Silk Touch                    15 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Unbreaking                    5    13  21 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Fortune                      15  24  33 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Power                        1    11  21  31  41 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Punch                        12  32 

2012-09-03 17:07:48 [iNFO] [sTDOUT] Flame                        20 

2012-09-03 17:07:48 [FINE] [ForgeModLoader] Injecting dummy network mod handler for BaseMod mod_521_superior_enchanting

2012-09-03 17:07:48 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mod_521_superior_enchanting

2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb delivered to mod mod_521_superior_enchanting

2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb to mod mod_TooManyItems

2012-09-03 17:07:48 [FINE] [ForgeModLoader] No MLProp configuration for mod_TooManyItems found or required. No file written

2012-09-03 17:07:48 [FINE] [ForgeModLoader] Injecting dummy network mod handler for BaseMod mod_TooManyItems

2012-09-03 17:07:48 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mod_TooManyItems

2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb delivered to mod mod_TooManyItems

2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e to mod FML

2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e delivered to mod FML

2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e to mod Forge

2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e delivered to mod Forge

2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e to mod mod_MineVideo

2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e delivered to mod mod_MineVideo

2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e to mod mod_MumbleLink

2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e delivered to mod mod_MumbleLink

2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e to mod mod_521_magicalRepair

2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e delivered to mod mod_521_magicalRepair

2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e to mod mod_521_superior_enchanting

2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e delivered to mod mod_521_superior_enchanting

2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e to mod mod_TooManyItems

2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e delivered to mod mod_TooManyItems

2012-09-03 17:07:49 [iNFO] [sTDOUT] Infinity                      20 

2012-09-03 17:07:49 [iNFO] [sTDOUT] Starting up SoundSystem...

2012-09-03 17:07:49 [iNFO] [sTDOUT] Initializing LWJGL OpenAL

2012-09-03 17:07:49 [iNFO] [sTDOUT]    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

2012-09-03 17:07:49 [iNFO] [sTDOUT] OpenAL initialized.

2012-09-03 17:07:49 [iNFO] [sTDOUT] setupTexture: "/terrain.png", id: 7

2012-09-03 17:07:49 [iNFO] [sTDOUT] TextureFX registered: axh@2cd9799d, texId: 7, index: 237

2012-09-03 17:07:49 [iNFO] [sTDOUT] TextureFX registered: axk@5306989e, texId: 7, index: 205

2012-09-03 17:07:49 [iNFO] [sTDOUT] TextureFX registered: axi@66cf9bf0, texId: 7, index: 14

2012-09-03 17:07:49 [iNFO] [sTDOUT] setupTexture: "/gui/items.png", id: 8

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: axd@68ffab0a, texId: 8, index: 54

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: axc@6921dcac, texId: 8, index: 70

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: axj@3cdfd643, texId: 7, index: 206

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: axg@b6be7ee, texId: 7, index: 238

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: axf@5947c01d, texId: 7, index: 31

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: axf@7595ddb5, texId: 7, index: 47

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axh@2cd9799d, texId: 7, index: 237

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDLavaFX@27443628, texId: 7, index: 237

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axk@5306989e, texId: 7, index: 205

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDWaterFX@6f3f903b, texId: 7, index: 205

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axi@66cf9bf0, texId: 7, index: 14

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDPortalFX@1005354a, texId: 7, index: 14

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axj@3cdfd643, texId: 7, index: 206

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDWaterFlowFX@7838c8c5, texId: 7, index: 206

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axg@b6be7ee, texId: 7, index: 238

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDLavaFlowFX@58053b2c, texId: 7, index: 238

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axf@5947c01d, texId: 7, index: 31

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDFlamesFX@3f6ff2d9, texId: 7, index: 31

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axf@7595ddb5, texId: 7, index: 47

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDFlamesFX@261ca3cb, texId: 7, index: 47

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axd@68ffab0a, texId: 8, index: 54

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDCompassFX@766245a4, texId: 8, index: 54

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axc@6921dcac, texId: 8, index: 70

2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDWatchFX@4b721a26, texId: 8, index: 70

2012-09-03 17:07:50 [iNFO] [sTDOUT] Loading custom colors: /misc/grasscolor.png

2012-09-03 17:07:50 [iNFO] [sTDOUT] Loading custom colors: /misc/foliagecolor.png

2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/ctm.png", id: 9

2012-09-03 17:07:50 [iNFO] [sTDOUT] MatchingCtmPng: true

2012-09-03 17:07:50 [iNFO] [sTDOUT] Registering default ConnectedTextures

2012-09-03 17:07:50 [iNFO] [sTDOUT] NaturalTextures: configuration "/natural.properties" not found

2012-09-03 17:07:50 [iNFO] [sTDOUT] Natural Textures: Using default configuration.

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c to mod FML

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c delivered to mod FML

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c to mod Forge

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c delivered to mod Forge

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c to mod mod_MineVideo

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c delivered to mod mod_MineVideo

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c to mod mod_MumbleLink

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c delivered to mod mod_MumbleLink

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c to mod mod_521_magicalRepair

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c delivered to mod mod_521_magicalRepair

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c to mod mod_521_superior_enchanting

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c delivered to mod mod_521_superior_enchanting

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c to mod mod_TooManyItems

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c delivered to mod mod_TooManyItems

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc to mod FML

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc delivered to mod FML

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc to mod Forge

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc delivered to mod Forge

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc to mod mod_MineVideo

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc delivered to mod mod_MineVideo

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc to mod mod_MumbleLink

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc delivered to mod mod_MumbleLink

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc to mod mod_521_magicalRepair

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc delivered to mod mod_521_magicalRepair

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc to mod mod_521_superior_enchanting

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc delivered to mod mod_521_superior_enchanting

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc to mod mod_TooManyItems

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc delivered to mod mod_TooManyItems

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 to mod FML

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 delivered to mod FML

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 to mod Forge

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 delivered to mod Forge

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 to mod mod_MineVideo

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Handling post startup activities for ModLoader mod mod_MineVideo

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 delivered to mod mod_MineVideo

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 to mod mod_MumbleLink

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Handling post startup activities for ModLoader mod mod_MumbleLink

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 delivered to mod mod_MumbleLink

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 to mod mod_521_magicalRepair

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Handling post startup activities for ModLoader mod mod_521_magicalRepair

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 delivered to mod mod_521_magicalRepair

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 to mod mod_521_superior_enchanting

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Handling post startup activities for ModLoader mod mod_521_superior_enchanting

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 delivered to mod mod_521_superior_enchanting

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 to mod mod_TooManyItems

2012-09-03 17:07:50 [FINER] [ForgeModLoader] Handling post startup activities for ModLoader mod mod_TooManyItems

2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 delivered to mod mod_TooManyItems

2012-09-03 17:07:50 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 7 mods

2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/title/bg/panorama0.png", id: 12

2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/title/bg/panorama1.png", id: 13

2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/title/bg/panorama2.png", id: 14

2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/title/bg/panorama3.png", id: 15

2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/title/bg/panorama4.png", id: 16

2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/title/bg/panorama5.png", id: 17

2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/title/mclogo.png", id: 18

2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/gui/gui.png", id: 19

2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/gui/particles.png", id: 20

2012-09-03 17:07:50 [iNFO] [sTDOUT] ########## GL ERROR ##########

2012-09-03 17:07:50 [iNFO] [sTDOUT] @ Pre render

2012-09-03 17:07:50 [iNFO] [sTDOUT] 1281: Invalid value

2012-09-03 17:07:54 [iNFO] [sTDOUT] setupTexture: "/gui/background.png", id: 21

2012-09-03 17:08:16 [iNFO] [sTDOUT] setupTexture: "/gui/icons.png", id: 23

2012-09-03 17:08:20 [iNFO] [sTDOUT] Connecting to 127.0.0.1, 25580

2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/terrain/sun.png", id: 24

2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/terrain/moon_phases.png", id: 25

2012-09-03 17:08:21 [iNFO] [sTDOUT] Class not present: LightCache

2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/environment/snow.png", id: 26

2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/environment/rain.png", id: 27

2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/chicken.png", id: 28

2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/cow.png", id: 29

2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/creeper.png", id: 30

2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/enderman.png", id: 31

2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/ozelot.png", id: 32

2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/pig.png", id: 33

2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/sheep.png", id: 34

2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/skeleton.png", id: 35

2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/slime.png", id: 36

2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/spider.png", id: 37

2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/squid.png", id: 38

2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/wolf.png", id: 39

2012-09-03 17:08:22 [iNFO] [sTDOUT] setupTexture: "/mob/zombie.png", id: 40

2012-09-03 17:08:22 [iNFO] [sTDOUT] setupTexture: "/mob/char.png", id: 41

2012-09-03 17:08:22 [iNFO] [sTDERR] java.io.IOException: Server returned HTTP response code: 503 for URL: http://skins.minecraft.net/MinecraftSkins/keybounce.png

2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)

2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)

2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)

2012-09-03 17:08:22 [iNFO] [sTDERR] at java.lang.reflect.Constructor.newInstance(Constructor.java:513)

2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection$6.run(HttpURLConnection.java:1491)

2012-09-03 17:08:22 [iNFO] [sTDERR] at java.security.AccessController.doPrivileged(Native Method)

2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:1485)

2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1139)

2012-09-03 17:08:22 [iNFO] [sTDERR] at auy.run(SourceFile:33)

2012-09-03 17:08:22 [iNFO] [sTDERR] Caused by: java.io.IOException: Server returned HTTP response code: 503 for URL: http://skins.minecraft.net/MinecraftSkins/keybounce.png

2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1436)

2012-09-03 17:08:22 [iNFO] [sTDERR] at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:379)

2012-09-03 17:08:22 [iNFO] [sTDERR] at auy.run(SourceFile:26)

2012-09-03 17:08:22 [iNFO] [sTDERR] java.io.IOException: Server returned HTTP response code: 503 for URL: http://skins.minecraft.net/MinecraftCloaks/keybounce.png

2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)

2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)

2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)

2012-09-03 17:08:22 [iNFO] [sTDERR] at java.lang.reflect.Constructor.newInstance(Constructor.java:513)

2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection$6.run(HttpURLConnection.java:1491)

2012-09-03 17:08:22 [iNFO] [sTDERR] at java.security.AccessController.doPrivileged(Native Method)

2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:1485)

2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1139)

2012-09-03 17:08:22 [iNFO] [sTDERR] at auy.run(SourceFile:33)

2012-09-03 17:08:22 [iNFO] [sTDERR] Caused by: java.io.IOException: Server returned HTTP response code: 503 for URL: http://skins.minecraft.net/MinecraftCloaks/keybounce.png

2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1436)

2012-09-03 17:08:22 [iNFO] [sTDERR] at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:379)

2012-09-03 17:08:22 [iNFO] [sTDERR] at auy.run(SourceFile:26)

2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] Initializing WMLL Stable 32

2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] Settings file: /Users/michael/Library/Application Support/minecraft/WMLL.properties

2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] Loaded options.

2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] Can run debug: false

2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] Rei's Minimap: false (false)

2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] RadarBro: false

2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] Forge: true

2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] WMLL Stable 32 initialized.

2012-09-03 17:08:22 [iNFO] [sTDOUT] MinecraftForge v4.0.0.241 Initialized

2012-09-03 17:08:22 [iNFO] [ForgeModLoader] MinecraftForge v4.0.0.241 Initialized

2012-09-03 17:08:22 [iNFO] [sTDOUT] setupTexture: "/mob/sheep_fur.png", id: 42

2012-09-03 17:08:22 [iNFO] [sTDOUT] setupTexture: "/particles.png", id: 43

2012-09-03 17:08:22 [iNFO] [sTDOUT] setupTexture: "%blur%/misc/glint.png", id: 44

2012-09-03 17:08:22 [iNFO] [sTDOUT] Allocated subtessellator, count: 1

2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] Version: 32, 32

2012-09-03 17:08:22 [iNFO] [sTDOUT] setupTexture: "/item/chest.png", id: 45

2012-09-03 17:08:22 [iNFO] [sTDOUT] setupTexture: "/item/largechest.png", id: 46

2012-09-03 17:08:22 [iNFO] [sTDOUT] setupTexture: "/item/sign.png", id: 47

2012-09-03 17:08:23 [iNFO] [sTDOUT] setupTexture: "/item/book.png", id: 48

2012-09-03 17:08:53 [iNFO] [sTDOUT] Stopping!

2012-09-03 17:08:54 [iNFO] [sTDOUT] SoundSystem shutting down...

2012-09-03 17:08:54 [iNFO] [sTDOUT]    Author: Paul Lamb, www.paulscode.com

 

 

 

Jeb! The sheep! The fence pens, they do nothing still leak!

Link to comment
Share on other sites

I have no idea what you're doing there. Are there any mods that are actually supposed to work server side in that list? Is superior enchanting a modloader mod for the server? How is that supposed to work?

 

Yes, there are server-side mods in that list.

From the server creation script:

 

unzip "$JarDir"/minecraft_server-132.jar

## unzip "$ModDir"/minecraftforge-universal-4.0.0.241.zip

unzip "$ModDir"/FallFix_1_3_2.zip

## unzip "$ModDir"/ImprovedLogPlacing-132.zip

unzip "$ModDir"/ImprovedLog-132-noforge.zip

unzip "$ModDir"/MoreVillageBiomes-V2-132-smp.zip

unzip "$ModDir"/SuperiorEnchantment-132smp.zip

unzip "$ModDir"/WaterPropogationFix_132.zip

 

Of those, SuperiorEnchantment is a modloader mod. On the server side, it just drops in. On the client side, it uses modloader.

 

ImprovedLogPlacing also talks to the client, and it is not a modloader mod.

 

Many of the mods are client-side modloader mods, and FML (forge 4) fails to retrieve the version information or pass it to the server -- the forge 4 server reports that the client connects with no mods, and SuperiorEnchantment fails to communicate between the server and client. (I did not test improve log placement).

 

Superior Enchantment's thread: http://www.minecraftforum.net/topic/1054768-superior-enchantment-system-minecraft-132version-1133/

 

Jeb! The sheep! The fence pens, they do nothing still leak!

Link to comment
Share on other sites

None of those are FML mods. They will not be "negotiated" because there's nothing to negotiate. Superior enchanting works by replacing containerworkbench and containerenchant on the server side directly.

 

It may or may not do it's own handshaking the first time one of those is accessed. I'm not sure what you're expecting to see here? None of these is a standard FML/ML server side mod. None of them will participate in that handshake because they can't. They may or may not actually work - I'm betting none of them is particularly compatible with anything we do in forge, but who knows. If they don't work, that's because they're not designed to live in a multi mod client and server environment. I can make efforts to provide ML compatibility, probably beyond the scope of ML compatibility somewhat. But I can't work miracles and make code that's not even designed for FML/ML/server side work there.

Link to comment
Share on other sites

None of those are FML mods. ... I'm not sure what you're expecting to see here? None of these is a standard FML/ML server side mod.

 

What do I expect? On the client side, Superior Enchanting uses Modloader. The client and server side can see each other, talk to each other, and work happily together.

 

In forge 3.3.8, FML identifies Superior Enchanting (and all of my client-side mods, actually), identifies the version information, forwards all the version information to the server, and the server reports every mod that I connect with.

 

2012-09-03 21:51:21 [iNFO] keybounce joined with: [521_magicalRepair 1.4, 521_superior_enchanting 1.10.3, Minema 1.41, NetherOres 1.2.5R1.2.3, MumbleLink 2.4.4, TooManyItems 1.2.5pre 2012-03-30, Bunyan 1.5, ExtrabiomesXL 2.2.7, TwilightForest 1.10.1, Mystcraft Mystcraft 0.9.1.02, MinecraftForge 3.3.8.152]

 

I've got a bunch of forge and modloader mods

 

In forge 4, FML fails to identify and report any of the mods

 

 

None of them will participate in that handshake because they can't. They may or may not actually work - I'm betting none of them is particularly compatible with anything we do in forge, but who knows.

 

The point is, it works with Risugami's ModLoader, in multiplayer.

 

Superior Enchantment, both the 1.2.5 and the 1.3.2 version, successfully talk between client and server with Risugami's Modloader, and fail with Forge Modloader.

 

In Forge 3, the server is told about all of the mods FML found, and their versions, even the mods that are RML mods. In Forge 4, that all fails -- mods that are client-side only RML mods with no server-side component also fail to be reported.

 

Jeb! The sheep! The fence pens, they do nothing still leak!

Link to comment
Share on other sites

I'm sorry, the mods are identified on the client, right? They work on the client, right? How do you know they're not working on the server? Just because they're not identified as present on the server?

 

The list of mods "joined" on the server is the accepted subset intersection of server and client mods. That is how FML is designed to work. The whole list is sent for possible server side rejection but is not identified as being the "joined" list because it is discarded. The only mods "reported" as being joined, are those that FML believes are important, specifically, KNOWN mods present on both client and server - they are the only mods that can control acceptance or rejection of the connection, so they're the only ones that are relevant. The 1.2.5 argument is specious, because 1.2.5 handled mod handshaking differently (it was not handled by FML).

 

Name one server side mod in your list that is actually an FML or proper server side modloader mod, please? Then I'll take this bug report seriously. At the moment your complaint seems to be that server side superior enchanting may or may not work. Which quite honestly I'm tempted to consider "not a bug" because of the way it has to load itself on the server, and the lack of proof that it actually ISN'T working. (Stack traces? errors? anything else?)

 

 

Link to comment
Share on other sites

I'm sorry, the mods are identified on the client, right? They work on the client, right? How do you know they're not working on the server? Just because they're not identified as present on the server?

 

Because when I attempt to use an enchantment table to make use of Superior Enchanting, it tells me that there is no client side mod installed.

 

Using RML, it works.

Using Forge/FML, it fails.

 

===

 

Cpw, you have seemed so far to dislike my use of scripting to set up my environments. Consider that this gives you a 100% repeatable build for my issue. Consider that this gives you the perfect ability to test anything.

 

I have identified something that works in RML, fails in FML.

I have given you a reproduce-able build environment.

 

Name one server side mod in your list that is actually an FML or proper server side modloader mod, please? Then I'll take this bug report seriously.

 

None are FML mods.

None of those mods even needs forge.

I have other mods, not being used in that test, that are mod folder FML mods with mcmod.info files

 

But this is a mod that works in RML that does not work in FML. And your website here says that you want to know about that class of mod.

 

===

 

What is really annoying? I have some server-side mods that I want to use that use forge but have no client-side component, do not do anything to alter the client-side. (Example: Ruins. Generates structures in the map on the server-side).

 

I actually tested using RML on the client, and forge/FML on the server. Again, no FML/forge mod on the client at all, and none needed.

 

The forge server refused to let the RML client connect.

 

So, moving forward, forge is basically killing RML, and FML fails to accomplish what RML does.

Jeb! The sheep! The fence pens, they do nothing still leak!

Link to comment
Share on other sites

Yes, this was missing chat handling. An utterly ridiculous, but probably one of the few viable non-FML/ML, ways of doing s->c comms. Thanks for the bug report.

 

@Keybounce I want bug reports, not elaborate scripting environments. I want "mod x doesn't work with FML U.V.W" not "here's a thousand line essay on why you're a bad person because my ancient ways are going to have to change by a few lines."

 

Links to broken mods, with client or server log files are good. Overelaborate criticisms that seem to go nowhere are bad.

 

Here's how it could have gone down: '"SuperiorEnchanting is failing to establish client server comms". It has a non-modloader server side <here> that looks like it's complaining (error message here). No stack traces, it just can't "find" itself.' Instead of all that above.

 

 

Link to comment
Share on other sites

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

    • IBEEditor is a client-side-only mod Remove it from the server, keep it in your client  
    • Add crash-reports with sites like https://mclo.gs/ make a test without refurbished_furniture and/or modernfix
    • [22:52:45] [main/INFO]: ModLauncher running: args [--username, bruhitsmac, --version, forge-47.3.0, --gameDir, C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1, --assetsDir, C:\Users\macke\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, c0ee535912eb4c4c88e9434567848b92, --accessToken, ????????, --clientId, 153cc6-a0eddd-77716f-542e0f-c44707, --xuid, 2535410026067915, --userType, msa, --versionType, release, --width, 1024, --height, 768, --launchTarget, forgeclient, --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [22:52:45] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Eclipse Adoptium; OS Windows 11 arch amd64 version 10.0 [22:52:48] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [22:52:48] [main/INFO]: Trying GL version 4.6 [22:52:48] [main/INFO]: Requested GL version 4.6 got version 4.6 [22:52:48] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/macke/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [22:52:48] [pool-2-thread-1/INFO]: GL info: AMD Radeon(TM) Graphics GL version 4.6.0 Core Profile Context 24.5.1.240502, ATI Technologies Inc. [22:52:49] [main/INFO]: Found mod file additionaladditions-6.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file aeroblender-1.20.1-1.0.1-neoforge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file aether-1.20.1-1.5.0-neoforge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file aether-redux-2.0.17-1.20.1-neoforge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file AetherVillages-1.20.1-1.0.7-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file alexscaves-1.1.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file alexsdelight-1.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file alexsmobs-1.22.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file another_furniture-forge-1.20.1-3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Apotheosis-1.20.1-7.4.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ApothicAttributes-1.20.1-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Aquaculture-1.20.1-2.5.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ars_nouveau-1.20.1-4.12.4-all.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file artifacts-forge-9.5.13.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ash_api-forge-3.0.2+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file astemirlib-1.20.1-1.25.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file athena-forge-1.20.1-3.1.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file bagus_lib-1.20.1-5.3.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.9-all.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file bbb-1.20.1-forge-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file betterarcheology-1.2.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file betterendcities-1.0.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file betterjukebox-1.20-1.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file BetterModsButton-v8.0.2-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file biodiverse-1.0.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file BiomesOPlenty-1.20.1-18.0.0.592.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file blue_skies-1.20.1-1.3.31.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file blueprint-1.20.1-7.1.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file blur-forge-3.1.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Bookshelf-Forge-1.20.1-20.2.13.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file BotanyPots-Forge-1.20.1-13.0.39.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file BotanyTrees-Forge-1.20.1-9.0.17.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file bountiful_critters-1.2.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file buildersaddition-1.20.1-20230928a.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file bygonenether-1.3.2-1.20.x.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file call_of_yucatan-1.0.12-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file canary-mc1.20.1-0.3.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file carryon-forge-1.20.1-2.1.2.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file caupona-1.20.1-0.4.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file chefs-delight-1.0.3-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Chipped-forge-1.20.1-3.0.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Chunky-1.3.146.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file citadel-2.6.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Clumps-forge-1.20.1-12.0.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file cluttered-2.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file collective-1.20.1-7.84.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file comforts-forge-6.4.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file CompositeMaterial-Forge-1.20.1-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file configured-forge-1.20.1-2.2.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file connectedglass-1.1.12-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file constructionwand-1.20.1-2.11.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Controlling-forge-1.20.1-12.0.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Corgilib-Forge-1.20.1-4.0.3.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file coroutil-forge-1.20.1-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file corpse-forge-1.20.1-1.0.14.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file crafting-on-a-stick-1.20.1-1.1.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file create-1.20.1-0.5.1.h.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file creeperoverhaul-3.0.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file cristellib-1.1.5-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Critters n' Crawlers-2.2.0-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file crittersandcompanions-1.20.1-2.1.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file CullLessLeaves-Reforged-1.20.1-1.0.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file cupboard-1.20.1-2.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file curios-forge-5.10.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Daleenys_SwampExpansion_Mod_v1.3 (1.20.1).jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file DarkPaintings-Forge-1.20.1-17.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file decorative_blocks-forge-1.20.1-4.1.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file deep_aether-1.20.1-1.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file DeeperCaves-1.20.1-1.2.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file deeperdarker-forge-1.20.1-1.3.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Ding-1.20.1-Forge-1.5.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file domum_ornamentum-1.20.1-1.0.186-RELEASE-universal.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file duclib-1.20-1.1.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file dungeons-and-taverns-3.0.3.f[Forge].jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file dungeons-and-taverns-ancient-city-overhaul-1 [Forge].jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file dungeons_plus-1.20.1-1.5.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file DungeonsArise-1.20.x-2.1.58-release.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file DungeonsAriseSevenSeas-1.20.x-1.0.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file dynamiclights-1.20.1.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file earth2java-forge-1.10.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file easy-villagers-forge-1.20.1-1.1.23.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file EasyMagic-v8.0.1-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ecologics-forge-1.20.1-2.2.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file EnchantingInfuser-v8.0.3-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file endermanoverhaul-forge-1.20.1-1.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file EndgamePortalRings 1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file enlightend-5.0.14-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Eternal Tales [Arhery  Jewelry] [v1.6.40] [Forge 1.20.1].jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Excessive Building 1.20.1-1.20.1-3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file expandability-9.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ExplorersCompass-1.20.1-1.3.3-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Explorify v1.6.2 f10-48.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Fallingleaves-1.20.1-2.1.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file FarmersStructures-1.0.3-1.20.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Fastload-Reforged-mc1.20.1-3.4.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ferritecore-6.0.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file fish_of_thieves-mc1.20.1-v3.0.8-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file forge-medievalend-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file FramedBlocks-9.3.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file framework-forge-1.20.1-0.7.8.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file friendsandfoes-forge-mc1.20.1-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ftb-essentials-forge-2001.2.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ftb-library-forge-2001.2.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ftb-ultimine-forge-2001.1.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file furnish-26-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file fusion-1.1.1-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Galosphere-1.20.1-1.4.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.4.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Geophilic v3.1.3 f15-48.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file glowroot1.0.8.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Gobber2-Forge-1.20.1-2.8.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file goblintraders-forge-1.20.1-1.9.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file GoodEnding-1.20.1-1.0.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file gottschcore-1.20.1-2.2.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file gpumemleakfix-1.20.1-1.8.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file guardvillagers-1.20.1-1.6.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file habitat-1.3.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file hamsters-forge-1.0.3-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file handcrafted-forge-1.20.1-3.0.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file hauntedharvest-1.20-3.1.20.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Heads-1.20.1-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file hearth_and_home-forge-1.20.1-2.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Hearths v1.0.1 f12-48.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Highlighter-1.20.1-forge-1.1.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file HopoBetterMineshaft-[1.20.2-1.20.4]-1.2.2b.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file HopoBetterRuinedPortals-[1.20-1.20.2]-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file hunters_return-1.20.1-11.5.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file iceandfire-2.1.13-1.20.1-beta-5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Iceberg-1.20.1-forge-1.1.21.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file iChunUtil-1.20.1-Forge-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file idas_forge-1.10.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ImmediatelyFast-Forge-1.2.21+1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file immersive_weathering-1.20.1-2.0.3-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Incendium_1.20.x_v5.3.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file insects_recrafted_162.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file integrated_api-1.5.1+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file integrated_stronghold-1.1.1+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file integrated_villages-1.0.1+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file inventorypets-1.20.1-2.1.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file inventorysorter-1.20.1-23.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ironfurnaces-1.20.1-4.1.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ItemsDisplayedForge-v1.3.4-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Jade-1.20.1-forge-11.11.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Jadens-Nether-Expansion-2.0.2-Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file jei-1.20.1-forge-15.20.0.104.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Jellyfishing-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file L_Enders_Cataclysm-2.07 - 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-API-forge-1.2.15-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-bakery-forge-1.1.15.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-beachparty-forge-1.1.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-bloomingnature-forge-1.0.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-brewery-forge-1.1.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-candlelight-forge-1.2.13.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-farm_and_charm-forge-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-furniture-forge-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-herbalbrews-forge-1.0.8.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-meadow-forge-1.3.19.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-vinery-forge-1.4.28.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-wildernature-forge-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file lionfishapi-1.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file lootintegrations-1.20.1-3.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file lootr-forge-1.20-0.7.34.89.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file lost_aether_content-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file lukis-grand-capitals-1.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Luminous Beast V1.1 - Forge 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Luminous Tag V1.0 - 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Luminous V1.4.6 - Forge 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file LuminousMonsters V1.2.4 - Forge 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file LuminousNether V1.2 - Forge 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file LuminousOverworld V1.1 - Forge 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mcw-doors-1.1.1forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mcw-fences-1.1.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mcw-paintings-1.0.5-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mcw-trapdoors-1.1.3-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mcw-windows-2.3.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file medieval_buildings-forge-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mes-1.3.1-1.20-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file midnightlib-forge-1.4.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file miners_delight-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mns-1.0.1-1.20-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file modernfix-forge-5.19.4+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file MonsterPlus-Forge1.20.1-v1.1.6.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file moonlight-1.20-2.13.3-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file moremobvariants-forge+1.20.1-1.3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file morevillagers-forge-1.20.1-5.0.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file MouseTweaks-forge-mc1.20.1-2.25.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mowziesmobs-1.6.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mvs-4.1.4-1.20-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mysticsbiomes-1.20.1-3.4.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Nameless Trinkets-1.20.1-1.7.8.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file naturalist-forge-4.0.3-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file NaturesCompass-1.20.1-1.11.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file nether-s-exoticism-1.20.1-1.2.8.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file nightlights-1.20.1-1.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file notenoughcrashes-4.4.7+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file nyfsspiders-forge-1.20.1-2.1.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file oculus-mc1.20.1-1.7.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Oh-The-Biomes-Weve-Gone-Forge-1.3.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Oh-The-Trees-Youll-Grow-forge-1.20.1-1.3.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file okzoomer-forge-1.20-3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Paintings-forge-1.20.1-11.0.0.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Paraglider-forge-20.1.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Patchouli-1.20.1-84-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file phantasm-0.4.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Placebo-1.20.1-8.6.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file plushies-1.4.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file polymorph-forge-0.49.5+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file PuzzlesLib-v8.1.24-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Quark-4.0-460.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Raided-1.20.1-0.1.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file randomium-1.20-1.32.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Rats-1.20.1-8.1.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file realmrpg_quests-0.1.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file recrafted_creatures-1.4.5-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file refurbished_furniture-forge-1.20.1-1.0.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file RegionsUnexploredForge-0.5.6+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file repurposed_structures-7.1.15+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file resourcefulconfig-forge-1.20.1-2.1.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file resourcefullib-forge-1.20.1-2.1.29.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Ribbits-1.20.1-Forge-3.0.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file right-click-harvest-3.2.3+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file seafarer-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Searchables-forge-1.20.1-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file silent-lib-1.20.1-8.0.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file simplyswords-forge-1.56.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.20.11.1115.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file sophisticatedcore-1.20.1-0.6.33.711.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file sophisticatedstorage-1.20.1-0.10.44.904.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file sound-physics-remastered-forge-1.20.1-1.4.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file spawn-1.0.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file spelunkers_charm-3.6.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file spelunkery-1.20.1-0.3.13-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file stalwart-dungeons-1.20.1-1.2.8.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Structory_1.20.x_v1.3.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Structory_Towers_1.20.x_v1.0.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file structure_gel-1.20.1-2.16.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file structureessentials-1.20.1-3.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file supplementaries-1.20-2.8.17.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file swampier_swamps-1.20-4.0.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file takesapillage-1.0.3-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file TerraBlender-forge-1.20.1-3.0.1.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Terralith_1.20.x_v2.5.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file The_Graveyard_3.1_(FORGE)_for_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file The_Undergarden-1.20.1-0.8.14.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file thedawnera-1.20.1-0.58.94.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file TheOuterEnd-1.0.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file tidal-towns-1.3.3_1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Tide-forge-1.20.1-1.3.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Tips-Forge-1.20.1-12.1.8.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Towns-and-Towers-1.12-Fabric+Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file transparent-forge-8.0.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file TravelersTitles-1.20-Forge-4.0.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file treasure-bags-1.20.1-1.9.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file treasure2-1.20.1-3.10.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Twigs-1.20.1-3.1.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file twilightforest-1.20.1-4.3.2508-universal.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file unearthed_journey-1.1.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file untamedwilds-1.20.1-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file unusualfishmod-1.0.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file unusualprehistory-1.5.0.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file valhelsia_core-forge-1.20.1-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file valhelsia_furniture-forge-1.20.1-1.1.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file valhelsia_structures-forge-1.20.1-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file variantsandventures-forge-mc1.20.1-1.0.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file verdantvibes-1.0.3-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file villagernames-1.20.1-8.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file VillagersPlus_3.1_(FORGE)_for_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file vintagedelight-0.1.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file visuality-forge-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file VisualWorkbench-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file waystones-forge-1.20-14.1.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file weather2-1.20.1-2.8.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Wesley's Roguelike Dungeons 1.20.1-2.3.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file what_gecko-1.20.1-1.0.3.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file whatareyouvotingfor2023-1.20.1-1.2.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Xaeros_Minimap_24.5.0_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file XaerosWorldMap_1.39.0_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsApi-1.20-Forge-4.0.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsBetterDesertTemples-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsBetterDungeons-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsBetterEndIsland-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsBetterJungleTemples-1.20-Forge-2.0.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsBetterWitchHuts-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsCaveBiomes-1.20.1-Forge-2.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsExtras-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Zeta-1.0-24.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/WARN]: Mod file C:\Users\macke\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.3.0\fmlcore-1.20.1-47.3.0.jar is missing mods.toml file [22:52:49] [main/WARN]: Mod file C:\Users\macke\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.3.0\javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file [22:52:49] [main/WARN]: Mod file C:\Users\macke\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.3.0\lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file [22:52:49] [main/WARN]: Mod file C:\Users\macke\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.3.0\mclanguage-1.20.1-47.3.0.jar is missing mods.toml file [22:52:49] [main/INFO]: Found mod file fmlcore-1.20.1-47.3.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@14bf57b2 [22:52:49] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.3.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@14bf57b2 [22:52:49] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.3.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@14bf57b2 [22:52:49] [main/INFO]: Found mod file mclanguage-1.20.1-47.3.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@14bf57b2 [22:52:49] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@14bf57b2 [22:52:49] [main/INFO]: Found mod file forge-1.20.1-47.3.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@14bf57b2 [22:52:50] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [22:52:50] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: geckolib. Using Mod File: C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods\geckolib-forge-1.20.1-4.4.9.jar [22:52:50] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: aeroblender. Using Mod File: C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods\aeroblender-1.20.1-1.0.1-neoforge.jar [22:52:50] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: curios. Using Mod File: C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods\curios-forge-5.10.0+1.20.1.jar [22:52:50] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods\resourcefullib-forge-1.20.1-2.1.29.jar [22:52:50] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: expandability. Using Mod File: C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods\expandability-9.0.4.jar [22:52:50] [main/INFO]: Found 19 dependencies adding them to mods collection [22:52:50] [main/INFO]: Found mod file mixinextras-forge-0.2.0-beta.9.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file kuma-api-forge-20.1.8+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file caffeine-3.1.8.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file cumulus_menus-1.20.1-1.0.1-neoforge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file satin-forge-1.20.1+1.15.0-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file jankson-1.2.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file mixinsquared-forge-0.1.2-beta.5.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file Registrate-MC1.20-1.3.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file spectrelib-forge-0.13.15+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file nitrogen_internals-1.20.1-1.0.11-neoforge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file MixinSquared-0.1.2-beta.5.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file puzzlesaccessapi-forge-8.0.7.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file bytecodecs-1.0.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file flywheel-forge-1.20.1-0.6.11-13.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file Reflect-1.3.4.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file MixinExtras-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file jcpp-1.4.14.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:57] [main/INFO]: Compatibility level set to JAVA_17 [22:52:57] [main/ERROR]: Mixin config hamsters.mixins.json does not specify "minVersion" property [22:52:57] [main/ERROR]: Mixin config bbb.mixins.json does not specify "minVersion" property [22:52:57] [main/ERROR]: Mixin config mixins.satin.client.json does not specify "minVersion" property [22:52:57] [main/ERROR]: Mixin config furniture-common.mixins.json does not specify "minVersion" property [22:52:57] [main/ERROR]: Mixin config mixins.recrafted_creatures.json does not specify "minVersion" property [22:52:57] [main/ERROR]: Mixin config mixins.duclib.json does not specify "minVersion" property [22:52:57] [main/ERROR]: Mixin config okzoomer.mixins.json does not specify "minVersion" property [22:52:57] [main/INFO]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [22:52:57] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.3.0, --gameDir, C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1, --assetsDir, C:\Users\macke\curseforge\minecraft\Install\assets, --uuid, c0ee535912eb4c4c88e9434567848b92, --username, bruhitsmac, --assetIndex, 5, --accessToken, ????????, --clientId, 153cc6-a0eddd-77716f-542e0f-c44707, --xuid, 2535410026067915, --userType, msa, --versionType, release, --width, 1024, --height, 768] [22:52:57] [main/WARN]: Reference map 'hamsters.refmap.json' for hamsters.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:57] [main/INFO]: Loaded configuration file for ModernFix 5.19.4+mc1.20.1: 84 options available, 0 override(s) found [22:52:57] [main/INFO]: Applying Nashorn fix [22:52:57] [main/INFO]: Applied Forge config corruption patch [22:52:57] [main/WARN]: Reference map 'handcrafted-forge-1.20.1-forge-refmap.json' for handcrafted.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: 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 [22:52:58] [main/WARN]: Reference map 'yungsextras.refmap.json' for yungsextras.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: 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 [22:52:58] [main/WARN]: Reference map 'nitrogen_internals.refmap.json' for nitrogen_internals.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: 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 [22:52:58] [main/WARN]: Reference map 'untamedwilds.refmap.json' for mixins.untamedwilds.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/INFO]: Loaded configuration file for Canary: 116 options available, 0 override(s) found [22:52:58] [main/INFO]: Loading 304 mods:     - additionaladditions 6.0.1     - aeroblender 1.20.1-1.0.1-neoforge     - aether 0.0NONE         |-- cumulus_menus 0.0NONE         |-- mixinextras 0.2.0-beta.9         \-- nitrogen_internals 0.0NONE     - aether_redux 2.0.17     - aether_villages 1.0.7     - alexscaves 1.1.5     - alexsdelight 1.5     - alexsmobs 1.22.9     - another_furniture 1.20.1-3.0.1     - apotheosis 7.4.3     - aquaculture 2.5.2     - architectury 9.2.14     - ars_nouveau 4.12.4     - artifacts 9.5.13     - ash_api 3.0.2+1.20.1     - astemirlib 1.25     - athena 3.1.2     - attributeslib 1.3.7     - bagus_lib 1.20.1-5.3.0     - bakery 1.1.15     - balm 7.3.9         \-- kuma_api 20.1.8     - bbb 1.20.1-1.0.1     - beachparty 1.1.5     - betterarcheology 1.2.1-1.20.1     - betterdeserttemples 1.20-Forge-3.0.3     - betterdungeons 1.20-Forge-4.0.4     - betterendcities 1.0.0-1.20.1     - betterendisland 1.20-Forge-2.0.6     - betterfortresses 1.20-Forge-2.0.6     - betterjukebox 1.20-1.3     - betterjungletemples 1.20-Forge-2.0.5     - bettermineshafts 1.20-Forge-4.0.4     - bettermodsbutton 8.0.2     - betteroceanmonuments 1.20-Forge-3.0.4     - betterwitchhuts 1.20-Forge-3.0.3     - biodiverse 1.0.0     - biomesoplenty 18.0.0.592     - biomeswevegone 1.3.1     - bloomingnature 1.0.9     - blue_skies 1.3.31     - blueprint 7.1.0     - blur 3.1.1         \-- satin 1.20.1+1.15.0-SNAPSHOT     - bookshelf 20.2.13     - botanypots 13.0.39     - botanytrees 9.0.17     - bountiful_critters 1.2.2     - brewery 1.1.9     - buildersaddition 1.20.1-20230928a     - bygonenether 1.3.2     - call_of_yucutan 1.0.12     - canary 0.3.3     - candlelight 1.2.13     - carryon 2.1.2.7     - cataclysm 2.07     - caupona 1.20.1-0.4.9     - cavesanddepths 1.2.7     - chefsdelight 1.0.3-forge-1.20.1     - chipped 3.0.6     - chunky 1.3.146     - citadel 2.6.0     - cloth_config 11.1.136     - clumps 12.0.0.4     - cnc 2.2.0     - collective 7.84     - comforts 6.4.0+1.20.1         \-- spectrelib 0.13.15+1.20.1     - composite_material 1.1.0     - configured 2.2.3     - connectedglass 1.1.12     - constructionwand 1.20.1-2.11     - controlling 12.0.2     - corgilib 4.0.3.2     - coroutil 1.20.1-1.3.7     - corpse 1.20.1-1.0.14     - crafting_on_a_stick 1.1.5     - create 0.5.1.h         \-- flywheel 0.6.11-13     - creeperoverhaul 3.0.2     - cristellib 1.1.5     - crittersandcompanions 1.20.1-2.1.7     - culllessleaves 1.20.1-1.0.5     - cupboard 1.20.1-2.7     - curios 5.10.0+1.20.1     - darkpaintings 17.0.4     - dawnera 0.58.94     - decorative_blocks 4.1.3     - deep_aether 1.20.1-1.0.4     - deeperdarker 1.3.2     - ding 1.5.0     - display 1.3.4     - doapi 1.2.15         \-- terraform 7.0.1     - domum_ornamentum 1.20.1-1.0.186-RELEASE     - duclib 1.1.4     - dungeons_arise 2.1.58-1.20.x     - dungeons_arise_seven_seas 1.0.2     - dungeons_plus 1.5.0     - dynamiclights 1.20.1.2     - earthtojavamobs 1.10.1     - easy_villagers 1.20.1-1.1.23     - easymagic 8.0.1     - ecologics 2.2.0     - enchantinginfuser 8.0.3     - endermanoverhaul 1.0.4     - endgame_portal_rings 1.0.0     - enlightened_end 5.0.14     - eternal_tales 1.6.40     - excessive_building 1.20.1-3.0.1     - expandability 9.0.4     - explorerscompass 1.20.1-1.3.3-forge     - explorify 1.6.2     - fallingleaves 2.1.0     - farm_and_charm 1.0.3     - farmers_structures 1.0.0     - farmersdelight 1.20.1-1.2.4     - fastload 3.4.0     - ferritecore 6.0.1     - fishofthieves 3.0.8     - forge 47.3.0     - framedblocks 9.3.1     - framework 0.7.8     - friendsandfoes 3.0.3     - ftbessentials 2001.2.2     - ftblibrary 2001.2.4     - ftbultimine 2001.1.5     - furnish 26     - furniture 1.0.2     - fusion 1.1.1     - galosphere 1.20.1-1.4.1     - geckolib 4.4.9     - geophilic 3.1.3     - glowroot 1.0.8     - gobber2 2.8.9     - goblintraders 1.9.3     - goodending 1.20.1-1.0.1     - gottschcore 2.2.0     - gpumemleakfix 1.20.1-1.8     - graveyard 3.1     - guardvillagers 1.20.1-1.6.7     - habitat 1.3.1     - hamsters 1.20.1-1.0.3     - handcrafted 3.0.6     - hauntedharvest 1.20-3.1.20     - heads 1.1.2     - hearth_and_home 1.20.1-2.0.1     - hearths 1.0.1     - herbalbrews 1.0.8     - highlighter 1.1.9     - hopo 1.2.2     - hoporp 1.3.7     - hunters_return 1.20.1-11.5.0     - iceandfire 2.1.13-1.20.1     - iceberg 1.1.21     - ichunutil 1.0.0     - idas 1.10.1+1.20.1     - immediatelyfast 1.2.21+1.20.4     - immersive_weathering 1.20.1-2.0.3     - incendium 5.3.5     - insects_recrafted 1.6.2     - integrated_api 1.5.1+1.20.1-forge     - integrated_stronghold 1.1.1+1.20.1-forge     - integrated_villages 1.0.1+1.20.1-forge     - inventorypets 2.1.3     - inventorysorter 23.0.1     - ironfurnaces 4.1.6     - jade 11.11.1+forge     - jei 15.20.0.104     - jellyfishing 2.0.0     - lionfishapi 1.9     - lootintegrations 1.20.1-3.7     - lootr 0.7.34.87     - lost_aether_content 1.2.3     - luminous_beasts 1.1     - luminous_monsters 1.2.4     - luminous_nether 1.2.0     - luminoustag 1.0.0     - luminousworld 1.4.6     - luphieclutteredmod 2.1     - mcwdoors 1.1.1     - mcwfences 1.1.2     - mcwpaintings 1.0.5     - mcwtrpdoors 1.1.3     - mcwwindows 2.3.0     - meadow 1.3.19         \-- mixinsquared 0.1.2-beta.5     - medieval_buildings 1.0.2     - medievalend 1.0.1     - mes 1.3.1-1.20-forge     - midnightlib 1.4.2     - minecraft 1.20.1     - miners_delight 1.20.1-1.2.3     - mns 1.0.1-1.20-forge     - modernfix 5.19.4+mc1.20.1     - monsterplus 1.0     - moonlight 1.20-2.13.3     - morecropsbydaleeny 1.1.1     - moremobvariants 1.3.0.1     - morevillagers 5.0.0     - mousetweaks 2.25.1     - mowziesmobs 1.6.4     - mr_dungeons_andtaverns 3.0.3.f     - mr_dungeons_andtavernsancientcityoverhaul 1     - mr_lukis_grandcapitals 1.0     - mr_tidal_towns 1.3.3     - mvs 4.1.4-1.20-forge     - mysticsbiomes 3.4.2     - nameless_trinkets 1.20.1-1.7.8     - naturalist 4.0.3     - naturescompass 1.20.1-1.11.2-forge     - netherexp 2.0.2     - nethers_exoticism 1.2.8     - nightlights 1.1     - notenoughcrashes 4.4.7+1.20.1     - nyfsspiders 2.1.1     - oculus 1.7.0     - ohthetreesyoullgrow 1.20.1-1.3.1     - okzoomer 3.0.1     - outer_end 1.0.8     - paintings 11.0.0.2     - paraglider 20.1.3     - patchouli 1.20.1-84-FORGE     - phantasm 0.4.1     - placebo 8.6.2     - plushies 1.4.0     - polymorph 0.49.5+1.20.1     - puzzleslib 8.1.24         \-- puzzlesaccessapi 8.0.7     - quark 4.0-460     - raided 0.1.4     - randomium 1.20-1.32     - rats 1.20.1-8.1.2     - realmrpg_quests 0.1.1     - recrafted_creatures 1.4.5-1.20.1     - refurbished_furniture 1.0.6     - regions_unexplored 0.5.6     - repurposed_structures 7.1.15+1.20.1-forge     - resourcefulconfig 2.1.2     - resourcefullib 2.1.29     - ribbits 1.20.1-Forge-3.0.0     - rightclickharvest 3.2.3+1.20.1-forge     - seafarer 1.0.1     - searchables 1.0.3     - silentlib 8.0.0     - simplyswords 1.56.0-1.20.1     - sophisticatedbackpacks 3.20.11.1115     - sophisticatedcore 0.6.33.711     - sophisticatedstorage 0.10.44.904     - sound_physics_remastered 1.20.1-1.4.5     - spawn 1.20.1-1.0.2     - spelunkers_charm 3.6.0     - spelunkery 1.20.1-0.3.13     - stalwart_dungeons 1.2.8     - structory 1.3.5     - structory_towers 1.0.7     - structure_gel 2.16.2     - structureessentials 1.20.1-3.4     - supermartijn642configlib 1.1.8     - supermartijn642corelib 1.1.17+a     - supplementaries 1.20-2.8.17     - swampier_swamps 1.20-4.0.0     - t_and_t 0.0NONE     - takesapillage 1.0.3     - terrablender 3.0.1.7     - terralith 2.5.4     - tide 1.3.3     - tipsmod 12.1.8     - transparent 8.0.1+1.20.1     - travelerstitles 1.20-Forge-4.0.2     - treasure2 3.10.3     - treasurebags 1.9.0     - twigs 1.20.1-3.1.1     - twilightforest 4.3.2508     - undergarden 0.8.14     - unearthed_journey 1.0.1     - untamedwilds 4.0.4     - unusualfishmod 1.0.7     - unusualprehistory 1.5.0.3     - valhelsia_core 1.1.2     - valhelsia_furniture 1.1.3     - valhelsia_structures 1.20.1-1.1.2     - variantsandventures 1.0.6     - verdantvibes 1.0.3-1.20.1     - villagernames 8.1     - villagersplus 3.1     - vinery 1.4.28     - vintagedelight 0.1.4     - visuality 2.0.2     - visualworkbench 8.0.0     - waystones 14.1.5     - weather2 1.20.1-2.8.3     - what_gecko 1.0.0     - whatareyouvotingfor 1.2.5     - wildernature 1.0.3     - wrd 2.0.0     - xaerominimap 24.5.0     - xaeroworldmap 1.39.0     - yungsapi 1.20-Forge-4.0.6     - yungscavebiomes 1.20.1-Forge-2.0.1     - yungsextras 1.20-Forge-4.0.3     - zeta 1.0-24 [22:52:58] [main/WARN]: Reference map 'mns-forge-refmap.json' for mns-forge.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: 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 [22:52:58] [main/WARN]: Reference map 'naturalist-forge-forge-refmap.json' for naturalist.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'netherexp-forge-refmap.json' for netherexp.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'mixins.call_of_yucutan.refmap.json' for mixins.call_of_yucutan.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'betterjukebox-forge-refmap.json' for betterjukebox-forge.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'randomium-forge-refmap.json' for randomium.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'simplyswords-forge-refmap.json' for simplyswords.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'mes-forge-refmap.json' for mes-forge.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'coroutil.refmap.json' for coroutil.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'wildernature.forge.mixins.refmap.json' for wildernature.forge.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'mvs-forge-refmap.json' for mvs-forge.mixins.json could not be read. If this is a development environment you can ignore this message [22:53:00] [main/INFO]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/inventory/AnvilMenu [22:53:00] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:53:00] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:53:00] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:53:00] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:53:01] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/block/natural/GreenAercloudBlock (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.block.natural.GreenAercloudBlock) [22:53:01] [main/WARN]: @Mixin target com.aetherteam.aether_genesis.block.natural.GreenAercloudBlock was not found aether_redux.mixins.json:common.block.GreenAercloudBlockMixin [22:53:01] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/block/natural/OrangeTreeBlock (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.block.natural.OrangeTreeBlock) [22:53:01] [main/WARN]: @Mixin target com.aetherteam.aether_genesis.block.natural.OrangeTreeBlock was not found aether_redux.mixins.json:common.block.OrangeTreeMixin [22:53:01] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/block/natural/PurpleAercloudBlock (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.block.natural.PurpleAercloudBlock) [22:53:01] [main/WARN]: @Mixin target com.aetherteam.aether_genesis.block.natural.PurpleAercloudBlock was not found aether_redux.mixins.json:common.block.PurpleAercloudBlockMixin [22:53:01] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/client/GenesisMusic (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.client.GenesisMusic) [22:53:01] [main/WARN]: @Mixin target com.aetherteam.aether_genesis.client.GenesisMusic was not found aether_redux.mixins.json:client.audio.GoTVMusicMixin [22:53:01] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/client/renderer/entity/SkyrootMimicRenderer (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.client.renderer.entity.SkyrootMimicRenderer) [22:53:01] [main/WARN]: @Mixin target com.aetherteam.aether_genesis.client.renderer.entity.SkyrootMimicRenderer was not found aether_redux.mixins.json:client.render.MimicRendererMixin [22:53:01] [main/WARN]: Error loading class: net/builderdog/ancient_aether/client/renderer/entity/FestiveSwetRenderer (java.lang.ClassNotFoundException: net.builderdog.ancient_aether.client.renderer.entity.FestiveSwetRenderer) [22:53:01] [main/WARN]: @Mixin target net.builderdog.ancient_aether.client.renderer.entity.FestiveSwetRenderer was not found aether_redux.mixins.json:client.render.SwetRendererMixin [22:53:01] [main/WARN]: Error loading class: com/aetherteam/protect_your_moa/client/renderer/entity/layers/MoaArmorLayer (java.lang.ClassNotFoundException: com.aetherteam.protect_your_moa.client.renderer.entity.layers.MoaArmorLayer) [22:53:01] [main/WARN]: @Mixin target com.aetherteam.protect_your_moa.client.renderer.entity.layers.MoaArmorLayer was not found aether_redux.mixins.json:client.render.layer.MoaArmorLayerMixin [22:53:01] [main/WARN]: Error loading class: com/aetherteam/protect_your_moa/client/renderer/entity/layers/MoaChestLayer (java.lang.ClassNotFoundException: com.aetherteam.protect_your_moa.client.renderer.entity.layers.MoaChestLayer) [22:53:01] [main/WARN]: @Mixin target com.aetherteam.protect_your_moa.client.renderer.entity.layers.MoaChestLayer was not found aether_redux.mixins.json:client.render.layer.MoaChestLayerMixin [22:53:01] [main/INFO]: Loaded config for: structureessentials.json [22:53:02] [main/WARN]: Error loading class: com/illusivesoulworks/diet/common/DietApiImpl (java.lang.ClassNotFoundException: com.illusivesoulworks.diet.common.DietApiImpl) [22:53:02] [main/WARN]: @Mixin target com.illusivesoulworks.diet.common.DietApiImpl was not found caupona.mixins.json:DietApiImplMixin [22:53:02] [main/INFO]: Replaced 1 calls to Enchantment#getMaxLevel() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [22:53:02] [main/INFO]: Replaced 1 calls to Enchantment#isDiscoverable() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [22:53:02] [main/INFO]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/item/CreativeModeTabs [22:53:02] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/compile/pipeline/BlockOcclusionCache (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.compile.pipeline.BlockOcclusionCache) [22:53:02] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.chunk.compile.pipeline.BlockOcclusionCache was not found cull-less-leaves.mixins.json:sodiumcompat.BlockOcclusionCacheMixin [22:53:02] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/gui/SodiumGameOptionPages (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.gui.SodiumGameOptionPages) [22:53:02] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.gui.SodiumGameOptionPages was not found cull-less-leaves.mixins.json:sodiumcompat.SodiumGameOptionPagesMixin [22:53:02] [main/INFO]: Replaced 1 calls to Enchantment#getMaxLevel() in net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds [22:53:02] [main/INFO]: Replaced 1 calls to Enchantment#isTreasureOnly() in net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds [22:53:02] [main/INFO]: Replaced 1 calls to Enchantment#isTradeable() in net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds [22:53:03] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/client/renderer/entity/SkyrootMimicRenderer (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.client.renderer.entity.SkyrootMimicRenderer) [22:53:03] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/client/renderer/entity/SkyrootMimicRenderer (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.client.renderer.entity.SkyrootMimicRenderer) [22:53:03] [main/WARN]: Error loading class: net/builderdog/ancient_aether/client/renderer/entity/FestiveSwetRenderer (java.lang.ClassNotFoundException: net.builderdog.ancient_aether.client.renderer.entity.FestiveSwetRenderer) [22:53:03] [main/WARN]: Error loading class: net/builderdog/ancient_aether/client/renderer/entity/FestiveSwetRenderer (java.lang.ClassNotFoundException: net.builderdog.ancient_aether.client.renderer.entity.FestiveSwetRenderer) [22:53:03] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). [22:53:04] [main/WARN]: Invalid registry value type detected for PerfOS counters. Should be REG_DWORD. Ignoring: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PerfOS\Performance\Disable Performance Counters. [22:53:05] [main/INFO]: BeforeConstant is searching for constants in method with descriptor (Lnet/minecraft/network/chat/Component;Z)V [22:53:05] [main/INFO]:   BeforeConstant found INTEGER constant: value = 0, intValue = null [22:53:05] [main/INFO]:     BeforeConstant found a matching constant TYPE at ordinal 0 [22:53:05] [main/INFO]:       BeforeConstant found Insn [ICONST_0]  [22:53:05] [main/INFO]:   BeforeConstant found INTEGER constant: value = 60, intValue = null [22:53:05] [main/INFO]:     BeforeConstant found a matching constant TYPE at ordinal 1 [22:53:05] [main/INFO]:       BeforeConstant found IntInsn 60 [22:53:05] [main/WARN]: @Inject(@At("INVOKE")) Shift.BY=1 on crittersandcompanions.mixins.json:LivingEntityMixin::handler$com000$onDie exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. [22:53:06] [main/INFO]: Patching EffectRenderingInventoryScreen#renderEffects [22:53:06] [main/INFO]: Patching EffectRenderingInventoryScreen#renderEffects [22:53:06] [pool-4-thread-1/INFO]: ModernFix reached bootstrap stage (22.99 s after launch) [22:53:06] [pool-4-thread-1/WARN]: @Final field delegatesByName:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin should be final [22:53:06] [pool-4-thread-1/WARN]: @Final field delegatesByValue:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin should be final [22:53:06] [pool-4-thread-1/INFO]: Injecting BlockStateBase cache population hook into getNeighborPathNodeType from com.abdelaziz.canary.mixin.ai.pathing.BlockStateBaseMixin [22:53:06] [pool-4-thread-1/INFO]: Injecting BlockStateBase cache population hook into getPathNodeType from com.abdelaziz.canary.mixin.ai.pathing.BlockStateBaseMixin [22:53:06] [pool-4-thread-1/INFO]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/item/CreativeModeTabs [22:53:07] [pool-4-thread-1/WARN]: This is the stupidest thing I've ever made in Minecraft modding history... [22:53:07] [pool-4-thread-1/INFO]: Replaced 1 calls to Enchantment#getMaxLevel() in org/violetmoon/quark/content/experimental/module/GameNerfsModule [22:53:08] [pool-4-thread-1/INFO]: Vanilla bootstrap took 1877 milliseconds [22:53:08] [pool-4-thread-1/INFO]: Replaced 5 calls to Enchantment#getMaxLevel() in org/violetmoon/quark/content/tools/module/AncientTomesModule [22:53:08] [pool-4-thread-1/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:53:08] [pool-4-thread-1/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:53:09] [pool-4-thread-1/INFO]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/inventory/AnvilMenu [22:53:09] [pool-4-thread-1/INFO]: Replaced 1 calls to Enchantment#getMaxLevel() in com/mrcrayfish/goblintraders/Hooks [22:53:11] [pool-4-thread-1/WARN]: @Final field f_26027_:Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; in guardvillagers.mixins.json:DefendVillageGoalGolemMixin should be final [22:53:11] [pool-4-thread-1/WARN]: Method overwrite conflict for scheduleRandomTick in corgilib-common.mixins.json:chunk.MixinChunkAccess, previously written by dev.corgitaco.ohthetreesyoullgrow.mixin.chunk.MixinChunkAccess. Skipping method. [22:53:11] [pool-4-thread-1/WARN]: Method overwrite conflict for getScheduledRandomTicks in corgilib-common.mixins.json:chunk.MixinChunkAccess, previously written by dev.corgitaco.ohthetreesyoullgrow.mixin.chunk.MixinChunkAccess. Skipping method. [22:53:11] [pool-4-thread-1/WARN]: @Inject(@At("INVOKE_ASSIGN")) Shift.BY=2 on refurbished_furniture.common.mixins.json:LevelChunkMixin::handler$egc000$refurbishedFurniture$AfterRemoveBlockEntity exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. [22:53:11] [pool-4-thread-1/INFO]: Patching FishingHook#catchingFish [22:53:12] [pool-4-thread-1/INFO]: Replaced 1 calls to Enchantment#getMaxLevel() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [22:53:12] [pool-4-thread-1/INFO]: Replaced 1 calls to Enchantment#isDiscoverable() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [22:53:12] [pool-4-thread-1/WARN]: Static binding violation: PRIVATE @Overwrite method m_47505_ in modernfix-common.mixins.json:perf.remove_biome_temperature_cache.BiomeMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [22:53:13] [Render thread/WARN]: Error loading class: net/caffeinemc/mods/sodium/api/memory/MemoryIntrinsics (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.api.memory.MemoryIntrinsics)  
    • Hi, I need some assistance with my Minecraft curseforge modpack crashing upon starting a new world. I had the same mods installed for Forge 47.2.0 and I kept crashing joining an existing world and when I tried to make a new one, so I updated forge and redownloaded everything, but it is still crashing. I currently have 311 mods installed and need some help reading my crash log to see what could be the problem. Whether that's a specific mod, dependency, or something missing. Log is posted below. Thank you!    
    • Minecraft Crash Report pls help  ---- Minecraft Crash Report ---- WARNING: coremods are present:   EntityCullingEarlyLoader (entityculling-1.12.2-1.6.3.jar)   llibrary (llibrary-core-1.0.11-1.12.2.jar)   FTBUltimineASM (ftb-ultimine-1202.3.5.jar)   SoManyEnchantments ASM (SoManyEnchantments-0.5.5.jar)   SpartanWeaponry-MixinLoader (SpartanWeaponry-1.12.2-1.6.0.jar)   MixinBooter (!mixinbooter-9.4.jar)   ParagliderLoadingPlugin (Paraglider-1.12.2-1.0.1.5.jar)   Quark Plugin (Quark-r1.6-179.jar)   ApotheosisCore (Apotheosis-1.12.2-1.12.5.jar)   iceandfire (iceandfire-1.9.1-1.12.2.jar)   CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   LootrCore (lootr-1.12.2-0.6.2.jar) Contact their authors BEFORE contacting forge // I'm sorry, Dave. Time: 10/8/24 1:15 AM Description: Exception in server tick loop net.minecraftforge.fml.common.LoaderException: java.lang.NoClassDefFoundError: net/minecraft/client/gui/GuiScreen     at net.minecraftforge.fml.common.AutomaticEventSubscriber.inject(AutomaticEventSubscriber.java:89)     at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:612)     at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:498)     at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)     at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)     at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)     at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)     at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)     at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)     at com.google.common.eventbus.EventBus.post(EventBus.java:217)     at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219)     at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:498)     at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)     at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)     at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)     at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)     at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)     at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)     at com.google.common.eventbus.EventBus.post(EventBus.java:217)     at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136)     at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595)     at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98)     at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333)     at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125)     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486)     at java.lang.Thread.run(Thread.java:748) Caused by: java.lang.NoClassDefFoundError: net/minecraft/client/gui/GuiScreen     at java.lang.Class.getDeclaredMethods0(Native Method)     at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)     at java.lang.Class.privateGetPublicMethods(Class.java:2902)     at java.lang.Class.getMethods(Class.java:1615)     at net.minecraftforge.fml.common.eventhandler.EventBus.register(EventBus.java:82)     at net.minecraftforge.fml.common.AutomaticEventSubscriber.inject(AutomaticEventSubscriber.java:82)     ... 31 more Caused by: java.lang.ClassNotFoundException: net.minecraft.client.gui.GuiScreen     at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191)     at java.lang.ClassLoader.loadClass(ClassLoader.java:418)     at java.lang.ClassLoader.loadClass(ClassLoader.java:351)     ... 37 more Caused by: net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerException: Exception in class transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer@3a022576 from coremod FMLCorePlugin     at net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerWrapper.transform(ASMTransformerWrapper.java:260)     at net.minecraft.launchwrapper.LaunchClassLoader.runTransformers(LaunchClassLoader.java:279)     at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:176)     ... 39 more Caused by: java.lang.RuntimeException: Attempted to load class blk for invalid side SERVER     at net.minecraftforge.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:62)     at net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerWrapper.transform(ASMTransformerWrapper.java:256)     ... 41 more No Mixin Metadata is found in the Stacktrace. A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details:     Minecraft Version: 1.12.2     Operating System: Linux (amd64) version 3.10.0-1160.118.1.el7.x86_64     Java Version: 1.8.0_282, AdoptOpenJDK     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), AdoptOpenJDK     Memory: 2299996568 bytes (2193 MB) / 2791833600 bytes (2662 MB) up to 4358406144 bytes (4156 MB)     JVM Flags: 9 total; -Xms2337M -Xmx4675M -XX:MaxMetaspaceSize=825M -XX:+ParallelRefProcEnabled -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:-OmitStackTraceInFastThrow -XX:+AlwaysPreTouch -XX:+OptimizeStringConcat     IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0     FML: MCP 9.42 Powered by Forge 14.23.5.2859 59 mods loaded, 59 mods active     States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored     | State | ID                            | Version           | Source                                                  | Signature                                |     |:----- |:----------------------------- |:----------------- |:------------------------------------------------------- |:---------------------------------------- |     | LC    | minecraft                     | 1.12.2            | minecraft.jar                                           | None                                     |     | LC    | mcp                           | 9.42              | minecraft.jar                                           | None                                     |     | LC    | FML                           | 8.0.99.99         | server.jar                                              | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | LC    | forge                         | 14.23.5.2859      | server.jar                                              | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | LC    | mixinbooter                   | 9.4               | minecraft.jar                                           | None                                     |     | LC    | aiimprovements                | 0.0.1.3           | AIImprovements-1.12-0.0.1b3.jar                         | None                                     |     | LC    | placebo                       | 1.6.0             | Placebo-1.12.2-1.6.1.jar                                | None                                     |     | LC    | apotheosis                    | 1.12.4            | Apotheosis-1.12.2-1.12.5.jar                            | None                                     |     | LC    | aquaculture                   | 1.6.8             | Aquaculture-1.12.2-1.6.8.jar                            | None                                     |     | LC    | baubles                       | 1.5.2             | Baubles-1.12-1.5.2.jar                                  | None                                     |     | LC    | artifacts                     | 1.12.2-1.2.4      | artifacts-1.12.2-1.2.4.jar                              | None                                     |     | LC    | attributefix                  | 1.0.12            | AttributeFix-Forge-1.12.2-1.0.12.jar                    | None                                     |     | LC    | jei                           | 4.16.1.301        | jei_1.12.2-4.16.1.301.jar                               | None                                     |     | LC    | quark                         | r1.6-179          | Quark-r1.6-179.jar                                      | None                                     |     | LC    | autoreglib                    | 1.3-32            | AutoRegLib-1.3-32.jar                                   | None                                     |     | LC    | bettermineshafts              | 1.12.2-2.2.1      | BetterMineshaftsForge-1.12.2-2.2.1.jar                  | None                                     |     | LC    | bookshelf                     | 2.3.590           | Bookshelf-1.12.2-2.3.590.jar                            | d476d1b22b218a10d845928d1665d45fce301b27 |     | LC    | bookworm                      | 1.12.2-2.5.2.1    | bookworm-1.12.2-2.5.2.1.jar                             | None                                     |     | LC    | carryon                       | 1.12.3            | carryon-1.12.2-1.12.7.23.jar                            | None                                     |     | LC    | clumps                        | 3.1.2             | Clumps-3.1.2.jar                                        | None                                     |     | LC    | cosmeticarmorreworked         | 1.12.2-v5a        | CosmeticArmorReworked-1.12.2-v5a.jar                    | aaaf83332a11df02406e9f266b1b65c1306f0f76 |     | LC    | customnpcs                    | 1.12              | CustomNPCs_1.12.2-(05Jul20).jar                         | None                                     |     | LC    | darkutils                     | 1.8.230           | DarkUtils-1.12.2-1.8.230.jar                            | d476d1b22b218a10d845928d1665d45fce301b27 |     | LC    | fantasticlib                  | 1.12.2.047        | FantasticLib-1.12.2.047.jar                             | None                                     |     | LC    | fastleafdecay                 | v14               | FastLeafDecay-v14.jar                                   | None                                     |     | LC    | ftbultimine                   | 1202.3.5          | ftb-ultimine-1202.3.5.jar                               | None                                     |     | LC    | cfm                           | 6.3.0             | furniture-6.3.2-1.12.2.jar                              | None                                     |     | LE    | ibeeditor                     | 1.0.0-alpha5      | IBEEditor-1.12.2-1.0.0-alpha5.jar                       | None                                     |     | L     | llibrary                      | 1.7.20            | llibrary-1.7.20-1.12.2.jar                              | None                                     |     | L     | iceandfire                    | 1.9.1             | iceandfire-1.9.1-1.12.2.jar                             | None                                     |     | L     | ironchest                     | 1.12.2-7.0.67.844 | ironchest-1.12.2-7.0.72.847.jar                         | None                                     |     | L     | ironfurnaces                  | 1.3.5             | ironfurnaces-1.3.5.jar                                  | None                                     |     | L     | lootr                         | 0.6.2             | lootr-1.12.2-0.6.2.jar                                  | None                                     |     | L     | mcwfences                     | 1.0.0             | mcw-fences-1.0.0-mc1.12.2.jar                           | None                                     |     | L     | testdummy                     | 1.12              | MmmMmmMmmMmm-1.12-1.14.jar                              | None                                     |     | L     | mowziesmobs                   | 1.5.8             | mowziesmobs-1.5.8.jar                                   | None                                     |     | L     | paraglider                    | 1.0.1.5           | Paraglider-1.12.2-1.0.1.5.jar                           | None                                     |     | L     | patchouli                     | 1.0-23.6          | Patchouli-1.0-23.6.jar                                  | None                                     |     | L     | corerm                        | 1.3.3             | RikMuldsCore_1.3.3.jar                                  | None                                     |     | L     | setbonus                      | 1.12.2.020        | SetBonus-1.12.2.020.jar                                 | None                                     |     | L     | somanyenchantments            | 0.5.5             | SoManyEnchantments-0.5.5.jar                            | None                                     |     | L     | spartanshields                | 1.5.5             | SpartanShields-1.12.2-1.5.5.jar                         | None                                     |     | L     | spartanweaponry               | 1.6.0             | SpartanWeaponry-1.12.2-1.6.0.jar                        | None                                     |     | L     | stg                           | 1.12.2-1.2.3      | stg-1.12.2-1.2.3.jar                                    | None                                     |     | L     | supermartijn642configlib      | 1.1.6             | supermartijn642configlib-1.1.8-forge-mc1.12.jar         | None                                     |     | L     | camping                       | 2.4.3             | TheCampingMod_2.4.3.jar                                 | None                                     |     | L     | twilightforest                | 3.11.1021         | twilightforest-1.12.2-3.11.1021-universal.jar           | None                                     |     | L     | uteamcore                     | 2.2.5.305         | u_team_core-forge-1.12.2-2.2.5.305.jar                  | None                                     |     | L     | uniquebase                    | 1.0.1             | Unique Enchantments Base-1.12.2-1.1.4.jar               | None                                     |     | L     | uniqueebattle                 | 1.0.1             | Unique Enchantments Battle-1.12.2-1.1.6.jar             | None                                     |     | L     | uniqueeutil                   | 1.0.1             | Unique Enchantments Utils-1.12.2-1.5.1.jar              | None                                     |     | L     | uniquee                       | 2.0.1             | Unique Enchantments-1.12.2-2.1.4.jar                    | None                                     |     | L     | usefulbackpacks               | 1.5.4.85          | useful_backpacks-1.12.2-1.5.4.85.jar                    | None                                     |     | L     | variedcommodities             | 1.12.2            | VariedCommodities_1.12.2-(31Mar23).jar                  | None                                     |     | L     | wizardanimalsbeta10           | 1.0.0             | WizardAnimalsBeta1.0.jar                                | None                                     |     | L     | worldedit                     | 6.1.10            | worldedit-forge-mc1.12.2-6.1.10-dist.jar                | None                                     |     | L     | zawa                          | 1.12.2-2.1.3      | zawa-1.12.2-2.1.3.jar                                   | None                                     |     | L     | craftableenchantedgoldenapple | 1.0.0             | zaynens_craftable_enchanted_golden_apple_mod_1.12.2.jar | None                                     |     | L     | betteranimalsplus             | 9.0.1             | betteranimalsplus-1.12.2-9.0.1.jar                      | None                                     |     Loaded coremods (and transformers):  EntityCullingEarlyLoader (entityculling-1.12.2-1.6.3.jar)    llibrary (llibrary-core-1.0.11-1.12.2.jar)   net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer   net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher FTBUltimineASM (ftb-ultimine-1202.3.5.jar)    SoManyEnchantments ASM (SoManyEnchantments-0.5.5.jar)   com.Shultrea.Rin.Transformer.SMEASM SpartanWeaponry-MixinLoader (SpartanWeaponry-1.12.2-1.6.0.jar)    MixinBooter (!mixinbooter-9.4.jar)    ParagliderLoadingPlugin (Paraglider-1.12.2-1.0.1.5.jar)   com.tictim.paraglider.asm.TransformerModelBiped Quark Plugin (Quark-r1.6-179.jar)   vazkii.quark.base.asm.ClassTransformer ApotheosisCore (Apotheosis-1.12.2-1.12.5.jar)   shadows.ApotheosisTransformer iceandfire (iceandfire-1.9.1-1.12.2.jar)   com.github.alexthe666.iceandfire.patcher.IceAndFireRuntimePatcher CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   team.chisel.ctm.client.asm.CTMTransformer LootrCore (lootr-1.12.2-0.6.2.jar)        Profiler Position: N/A (disabled)     Is Modded: Definitely; Server brand changed to 'fml,forge'     Type: Dedicated Server (map_server.txt)
  • Topics

×
×
  • Create New...

Important Information

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