Jump to content

Recommended Posts

Posted

Hello. When trying to update my own mod to Minecraft 1.8.9, I tried to create my Ruby Item. As I created it, I got to the JSON Model file step. Used the code from the apple.json file, changed it to what I needed. Then I put the texture into it's necessary location. When I ran the game, It rendered in the inventory as an untextured Block.

 

 

Here is my Main file:

import Josh.Mod.Main.init.MacItems;
import Josh.Mod.Main.proxy.CommonProxy;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.SidedProxy;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;

@Mod(modid=Reference.modid, version=Reference.version, name=Reference.name)
public class ModMain 
{
@SidedProxy(clientSide=Reference.clientProxy, serverSide=Reference.serverProxy)
public static CommonProxy proxy;

@EventHandler
public void preInit(FMLPreInitializationEvent event)
{
	System.out.println("Called PreInitialization");
	MacItems.init();
	MacItems.register();
}
@EventHandler
public void init(FMLInitializationEvent event)
{
	System.out.println("Called Initialization");
	proxy.registerRenders();
}
@EventHandler
public void postInit(FMLPostInitializationEvent event)
{
	System.out.println("Called Post Initialization");
}
}

 

My Items Class:

import Josh.Mod.Main.Reference;
import Josh.Mod.Main.Items.Ingots.RubyIngot;
import net.minecraft.client.Minecraft;
import net.minecraft.client.resources.model.ModelResourceLocation;
import net.minecraft.item.Item;
import net.minecraftforge.fml.common.registry.GameRegistry;

public class MacItems 
{
public static Item RubyIngot;

public static void init()
{
	RubyIngot = new RubyIngot();
}
public static void register()
{
	GameRegistry.registerItem(RubyIngot, RubyIngot.getUnlocalizedName().substring(5));
}
public static void registerRenders()
{
	registerRender(RubyIngot);
}
public static void registerRender(Item item)
{
	Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, 0, new ModelResourceLocation(Reference.modid.concat(item.getUnlocalizedName().substring(5)), "inventory"));
}
}

 

My Common Proxy:

public class CommonProxy 
{
public void registerRenders()
{

}
}

 

My Client Proxy:

import Josh.Mod.Main.init.MacItems;

public class ClientProxy extends CommonProxy
{
@Override
public void registerRenders(){
	MacItems.registerRenders();
}
}

 

The Class Defining my Item Properties:

import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.Item;

public class RubyIngot extends Item 
{
public RubyIngot()
{
	super();
	this.setUnlocalizedName("Ruby");
	this.setCreativeTab(CreativeTabs.tabMaterials);
}
}

 

 

CONSOLE OUTPUT:

Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
[08:31:23] [main/INFO]: Extra: []
[08:31:23] [main/INFO]: Running with arguments: [--userProperties, {}, --assetsDir, /Users/209143/.gradle/caches/minecraft/assets, --assetIndex, 1.8, --accessToken{REDACTED}, --version, 1.8.9, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[08:31:23] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[08:31:24] [main/INFO]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[08:31:24] [main/INFO]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[08:31:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[08:31:24] [main/INFO]: Forge Mod Loader version 11.15.1.1722 for Minecraft 1.8.9 loading
[08:31:24] [main/INFO]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_71, running on Mac OS X:x86_64:10.9.5, installed at /Library/Java/JavaVirtualMachines/jdk1.8.0_71.jdk/Contents/Home/jre
[08:31:24] [main/INFO]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[08:31:24] [main/INFO]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[08:31:24] [main/INFO]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[08:31:24] [main/INFO]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[08:31:24] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[08:31:24] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[08:31:24] [main/INFO]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[08:31:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[08:31:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[08:31:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[08:31:24] [main/ERROR]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[08:31:28] [main/ERROR]: FML appears to be missing any signature data. This is not a good thing
[08:31:28] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[08:31:28] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[08:31:29] [main/INFO]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[08:31:29] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[08:31:29] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[08:31:29] [main/INFO]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[08:31:35] [Client thread/INFO]: Setting user: Player758
[08:31:43] [Client thread/INFO]: LWJGL Version: 2.9.2
[08:31:46] [Client thread/INFO]: MinecraftForge v11.15.1.1722 Initialized
[08:31:46] [Client thread/INFO]: Replaced 204 ore recipies
[08:31:47] [Client thread/INFO]: Found 0 mods from the command line. Injecting into mod discoverer
[08:31:47] [Client thread/INFO]: Searching /Users/209143/Downloads/forge-1.8.9-11.15.1.1722-mdk/run/mods for mods
[08:31:49] [Client thread/INFO]: Forge Mod Loader has identified 4 mods to load
[08:31:50] [Client thread/INFO]: Attempting connection with missing mods [mcp, FML, Forge, macid] at CLIENT
[08:31:50] [Client thread/INFO]: Attempting connection with missing mods [mcp, FML, Forge, macid] at SERVER
[08:31:51] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Mac's Utilities Mod - 1.8 Edition
[08:31:51] [Client thread/INFO]: Processing ObjectHolder annotations
[08:31:51] [Client thread/INFO]: Found 384 ObjectHolder annotations
[08:31:51] [Client thread/INFO]: Identifying ItemStackHolder annotations
[08:31:51] [Client thread/INFO]: Found 0 ItemStackHolder annotations
[08:31:52] [Client thread/INFO]: Configured a dormant chunk cache size of 0
[08:31:52] [Forge Version Check/INFO]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[08:31:52] [Client thread/INFO]: [Josh.Mod.Main.ModMain:preInit:21]: Called PreInitialization
[08:31:52] [Client thread/INFO]: Applying holder lookups
[08:31:52] [Client thread/INFO]: Holder lookups applied
[08:31:52] [Client thread/INFO]: Injecting itemstacks
[08:31:52] [Client thread/INFO]: Itemstack injection complete
[08:31:53] [sound Library Loader/INFO]: Starting up SoundSystem...
[08:31:54] [Thread-7/INFO]: Initializing LWJGL OpenAL
[08:31:54] [Thread-7/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[08:31:55] [Thread-7/INFO]: OpenAL initialized.
[08:31:55] [sound Library Loader/INFO]: Sound engine started
[08:32:07] [Client thread/INFO]: Max texture size: 8192
[08:32:07] [Client thread/INFO]: Created: 16x16 textures-atlas
[08:32:10] [Client thread/INFO]: [Josh.Mod.Main.ModMain:init:28]: Called Initialization
[08:32:10] [Client thread/INFO]: Injecting itemstacks
[08:32:10] [Client thread/INFO]: Itemstack injection complete
[08:32:10] [Client thread/INFO]: [Josh.Mod.Main.ModMain:postInit:34]: Called Post Initialization
[08:32:10] [Client thread/INFO]: Forge Mod Loader has successfully loaded 4 mods
[08:32:10] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Mac's Utilities Mod - 1.8 Edition
[08:32:10] [Client thread/INFO]: SoundSystem shutting down...
[08:32:11] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
[08:32:11] [sound Library Loader/INFO]: Starting up SoundSystem...
[08:32:11] [Thread-9/INFO]: Initializing LWJGL OpenAL
[08:32:11] [Thread-9/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[08:32:11] [Thread-9/INFO]: OpenAL initialized.
[08:32:11] [sound Library Loader/INFO]: Sound engine started
[08:32:18] [Client thread/INFO]: Max texture size: 8192
[08:32:19] [Client thread/INFO]: Created: 512x512 textures-atlas
[08:32:20] [Client thread/ERROR]: ########## GL ERROR ##########
[08:32:20] [Client thread/ERROR]: @ Post startup
[08:32:20] [Client thread/ERROR]: 1281: Invalid value
[08:32:33] [server thread/INFO]: Starting integrated minecraft server version 1.8.9
[08:32:33] [server thread/INFO]: Generating keypair
[08:32:33] [server thread/INFO]: Injecting existing block and item data into this server instance
[08:32:33] [server thread/INFO]: Applying holder lookups
[08:32:33] [server thread/INFO]: Holder lookups applied
[08:32:34] [server thread/INFO]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@41f8bb43)
[08:32:34] [server thread/INFO]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@41f8bb43)
[08:32:34] [server thread/INFO]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@41f8bb43)
[08:32:34] [server thread/INFO]: Preparing start region for level 0
[08:32:35] [server thread/INFO]: Preparing spawn area: 7%
[08:32:36] [server thread/INFO]: Preparing spawn area: 46%
[08:32:37] [server thread/INFO]: Changing view distance to 12, from 10
[08:32:38] [Client thread/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@4efcf5a4[id=92f8a523-1476-36c1-a74b-ef7c8b1d0bfd,name=Player758,properties={},legacy=false]
com.mojang.authlib.exceptions.AuthenticationUnavailableException: Cannot contact authentication server
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:71) ~[YggdrasilAuthenticationService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:175) [YggdrasilMinecraftSessionService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:168) [YggdrasilMinecraftSessionService.class:?]
at net.minecraft.client.Minecraft.launchIntegratedServer(Minecraft.java:2230) [Minecraft.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.tryLoadExistingWorld(FMLClientHandler.java:698) [FMLClientHandler.class:?]
at net.minecraft.client.gui.GuiSelectWorld.func_146615_e(GuiSelectWorld.java:189) [GuiSelectWorld.class:?]
at net.minecraft.client.gui.GuiSelectWorld$List.elementClicked(GuiSelectWorld.java:261) [GuiSelectWorld$List.class:?]
at net.minecraft.client.gui.GuiSlot.handleMouseInput(GuiSlot.java:295) [GuiSlot.class:?]
at net.minecraft.client.gui.GuiSelectWorld.handleMouseInput(GuiSelectWorld.java:77) [GuiSelectWorld.class:?]
at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:523) [GuiScreen.class:?]
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1674) [Minecraft.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1024) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:349) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(SourceFile:124) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_71]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_71]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_71]
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_71]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_71]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_71]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_71]
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_71]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No subject alternative DNS name matching sessionserver.mojang.com found.
at sun.security.ssl.Alerts.getSSLException(Alerts.java:192) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1949) ~[?:1.8.0_71]
at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:302) ~[?:1.8.0_71]
at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:296) ~[?:1.8.0_71]
at sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1509) ~[?:1.8.0_71]
at sun.security.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:216) ~[?:1.8.0_71]
at sun.security.ssl.Handshaker.processLoop(Handshaker.java:979) ~[?:1.8.0_71]
at sun.security.ssl.Handshaker.process_record(Handshaker.java:914) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1062) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1375) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1403) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1387) ~[?:1.8.0_71]
at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:559) ~[?:1.8.0_71]
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1513) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:90) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1433) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1431) ~[?:1.8.0_71]
at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_71]
at java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:782) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1430) ~[?:1.8.0_71]
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) ~[?:1.8.0_71]
at com.mojang.authlib.HttpAuthenticationService.performGetRequest(HttpAuthenticationService.java:126) ~[HttpAuthenticationService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:54) ~[YggdrasilAuthenticationService.class:?]
... 25 more
Caused by: java.security.cert.CertificateException: No subject alternative DNS name matching sessionserver.mojang.com found.
at sun.security.util.HostnameChecker.matchDNS(HostnameChecker.java:204) ~[?:1.8.0_71]
at sun.security.util.HostnameChecker.match(HostnameChecker.java:95) ~[?:1.8.0_71]
at sun.security.ssl.X509TrustManagerImpl.checkIdentity(X509TrustManagerImpl.java:455) ~[?:1.8.0_71]
at sun.security.ssl.X509TrustManagerImpl.checkIdentity(X509TrustManagerImpl.java:436) ~[?:1.8.0_71]
at sun.security.ssl.X509TrustManagerImpl.checkTrusted(X509TrustManagerImpl.java:200) ~[?:1.8.0_71]
at sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:124) ~[?:1.8.0_71]
at sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1491) ~[?:1.8.0_71]
at sun.security.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:216) ~[?:1.8.0_71]
at sun.security.ssl.Handshaker.processLoop(Handshaker.java:979) ~[?:1.8.0_71]
at sun.security.ssl.Handshaker.process_record(Handshaker.java:914) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1062) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1375) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1403) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1387) ~[?:1.8.0_71]
at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:559) ~[?:1.8.0_71]
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1513) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:90) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1433) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1431) ~[?:1.8.0_71]
at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_71]
at java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:782) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1430) ~[?:1.8.0_71]
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) ~[?:1.8.0_71]
at com.mojang.authlib.HttpAuthenticationService.performGetRequest(HttpAuthenticationService.java:126) ~[HttpAuthenticationService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:54) ~[YggdrasilAuthenticationService.class:?]
... 25 more
[08:32:39] [Netty Local Client IO #0/INFO]: Server protocol version 2
[08:32:39] [Netty Server IO #1/INFO]: Client protocol version 2
[08:32:39] [Netty Server IO #1/INFO]: Client attempting to join with 4 mods : FML@8.0.99.99,macid@1.0,Forge@11.15.1.1722,mcp@9.19
[08:32:39] [server thread/INFO]: [server thread] Server side modded connection established
[08:32:39] [Netty Local Client IO #0/INFO]: [Netty Local Client IO #0] Client side modded connection established
[08:32:39] [server thread/INFO]: Player758[local:E:26fbd115] logged in with entity id 259 at (13.5, 58.0, -11.5)
[08:32:39] [server thread/INFO]: Player758 joined the game
[08:32:42] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@5cf1f49f[id=92f8a523-1476-36c1-a74b-ef7c8b1d0bfd,name=Player758,properties={},legacy=false]
com.mojang.authlib.exceptions.AuthenticationUnavailableException: Cannot contact authentication server
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:71) ~[YggdrasilAuthenticationService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:175) [YggdrasilMinecraftSessionService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:59) [YggdrasilMinecraftSessionService$1.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:56) [YggdrasilMinecraftSessionService$1.class:?]
at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3524) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2317) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2280) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2195) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache.get(LocalCache.java:3934) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827) [guava-17.0.jar:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:165) [YggdrasilMinecraftSessionService.class:?]
at net.minecraft.client.Minecraft.func_181037_M(Minecraft.java:2778) [Minecraft.class:?]
at net.minecraft.client.resources.SkinManager$3.run(SourceFile:106) [skinManager$3.class:?]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [?:1.8.0_71]
at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:1.8.0_71]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [?:1.8.0_71]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [?:1.8.0_71]
at java.lang.Thread.run(Thread.java:745) [?:1.8.0_71]
Caused by: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No subject alternative DNS name matching sessionserver.mojang.com found.
at sun.security.ssl.Alerts.getSSLException(Alerts.java:192) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1949) ~[?:1.8.0_71]
at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:302) ~[?:1.8.0_71]
at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:296) ~[?:1.8.0_71]
at sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1509) ~[?:1.8.0_71]
at sun.security.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:216) ~[?:1.8.0_71]
at sun.security.ssl.Handshaker.processLoop(Handshaker.java:979) ~[?:1.8.0_71]
at sun.security.ssl.Handshaker.process_record(Handshaker.java:914) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1062) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1375) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1403) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1387) ~[?:1.8.0_71]
at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:559) ~[?:1.8.0_71]
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1513) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:90) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1433) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1431) ~[?:1.8.0_71]
at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_71]
at java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:782) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1430) ~[?:1.8.0_71]
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) ~[?:1.8.0_71]
at com.mojang.authlib.HttpAuthenticationService.performGetRequest(HttpAuthenticationService.java:126) ~[HttpAuthenticationService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:54) ~[YggdrasilAuthenticationService.class:?]
... 19 more
Caused by: java.security.cert.CertificateException: No subject alternative DNS name matching sessionserver.mojang.com found.
at sun.security.util.HostnameChecker.matchDNS(HostnameChecker.java:204) ~[?:1.8.0_71]
at sun.security.util.HostnameChecker.match(HostnameChecker.java:95) ~[?:1.8.0_71]
at sun.security.ssl.X509TrustManagerImpl.checkIdentity(X509TrustManagerImpl.java:455) ~[?:1.8.0_71]
at sun.security.ssl.X509TrustManagerImpl.checkIdentity(X509TrustManagerImpl.java:436) ~[?:1.8.0_71]
at sun.security.ssl.X509TrustManagerImpl.checkTrusted(X509TrustManagerImpl.java:200) ~[?:1.8.0_71]
at sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:124) ~[?:1.8.0_71]
at sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1491) ~[?:1.8.0_71]
at sun.security.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:216) ~[?:1.8.0_71]
at sun.security.ssl.Handshaker.processLoop(Handshaker.java:979) ~[?:1.8.0_71]
at sun.security.ssl.Handshaker.process_record(Handshaker.java:914) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1062) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1375) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1403) ~[?:1.8.0_71]
at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1387) ~[?:1.8.0_71]
at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:559) ~[?:1.8.0_71]
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1513) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:90) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1433) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1431) ~[?:1.8.0_71]
at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_71]
at java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:782) ~[?:1.8.0_71]
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1430) ~[?:1.8.0_71]
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) ~[?:1.8.0_71]
at com.mojang.authlib.HttpAuthenticationService.performGetRequest(HttpAuthenticationService.java:126) ~[HttpAuthenticationService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:54) ~[YggdrasilAuthenticationService.class:?]
... 19 more
[08:32:43] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2253ms behind, skipping 45 tick(s)
[08:33:11] [server thread/INFO]: Saving and pausing game...
[08:33:12] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[08:33:12] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[08:33:12] [server thread/INFO]: Saving chunks for level 'New World'/The End
[08:33:12] [server thread/INFO]: Stopping server
[08:33:12] [server thread/INFO]: Saving players
[08:33:12] [server thread/INFO]: Saving worlds
[08:33:12] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[08:33:12] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[08:33:12] [server thread/INFO]: Saving chunks for level 'New World'/The End
[08:33:13] [server thread/INFO]: Unloading dimension 0
[08:33:13] [server thread/INFO]: Unloading dimension -1
[08:33:13] [server thread/INFO]: Unloading dimension 1
[08:33:13] [server thread/INFO]: Applying holder lookups
[08:33:13] [server thread/INFO]: Holder lookups applied
[08:33:15] [Client thread/INFO]: Stopping!
[08:33:15] [Client thread/INFO]: SoundSystem shutting down...
AL lib: (WW) FreeDevice: (0x7ff59abe9600) Deleting 9 Buffer(s)
[08:33:15] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com

 

My JSON file:

{
    "parent": "builtin/generated",
    "textures": {
        "layer0": "macid:items/RubyIngot"
    },
    "display": {
        "thirdperson": {
            "rotation": [ -90, 0, 0 ],
            "translation": [ 0, 1, -3 ],
            "scale": [ 0.55, 0.55, 0.55 ]
        },
        "firstperson": {
            "rotation": [ 0, -135, 25 ],
            "translation": [ 0, 4, 2 ],
            "scale": [ 1.7, 1.7, 1.7 ]
        }
    }
}

 

How can I fix this?

Posted

Oh god.

 

Why is your render registration code inside your item?  That will absolutely positively crash the server, it does not give a shit that you only call that method from the client, the JVM still needs to load the class and validate it and the mere existence of a reference to a client-side class will cause it to attempt to also load that class.

Why are you using getUnlocalizedName()?  The unlocalized name shouldn't be used for anything other than language localization.

 

You did not include your JSON

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

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

    • [00:43:03] [main/INFO]: ModLauncher running: args [--username, Pon4ic, --version, креейт РіРѕСЂРѕРґ, --gameDir, C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ, --assetsDir, C:\Users\biver\AppData\Roaming\.minecraft\assets, --assetIndex, 5, --uuid, 23eed3e43ab3452fb0164dffda5e81b5, --accessToken, вќ„вќ„вќ„вќ„вќ„вќ„вќ„вќ„, --clientId, null, --xuid, null, --userType, mojang, --versionType, modified, --width, 925, --height, 530, --launchTarget, forgeclient, --fml.forgeVersion, 47.4.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [00:43:03] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Microsoft; OS Windows 10 arch amd64 version 10.0 [00:43:06] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [00:43:06] [main/INFO]: Trying GL version 4.6 [00:43:06] [main/INFO]: Requested GL version 4.6 got version 4.6 [00:43:06] [main/INFO]: OptiFineTransformationService.onLoad [00:43:06] [main/INFO]: OptiFine ZIP file URL: union:/C:/Users/biver/AppData/Roaming/.minecraft/versions/креейт%20РіРѕСЂРѕРґ/mods/preview_OptiFine_1.20.1_HD_U_I6_pre6.jar%23346!/ [00:43:06] [main/INFO]: OptiFine ZIP file: C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods\preview_OptiFine_1.20.1_HD_U_I6_pre6.jar [00:43:06] [main/INFO]: Target.PRE_CLASS is available [00:43:07] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/biver/AppData/Roaming/.minecraft/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [00:43:07] [main/INFO]: OptiFineTransformationService.initialize [00:43:07] [pool-2-thread-1/INFO]: GL info: NVIDIA GeForce RTX 3060 Laptop GPU/PCIe/SSE2 GL version 4.6.0 NVIDIA 566.36, NVIDIA Corporation [00:43:08] [main/INFO]: Found mod file AdLods-1.20.1-8.1.7.0-build.1496.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file AdvancementPlaques-1.20.1-forge-1.6.9.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ae2qolrecipes-forge-1.18-1.20.1-1.3.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file AI-Improvements-1.20-0.5.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file almanac-1.20.x-forge-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file AmbientSounds_FORGE_v6.1.11_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file amendments-1.20-2.1.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file appleskin-forge-mc1.20.1-2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file appliedenergistics2-forge-15.4.8.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file baguettelib-1.20.1-Forge-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.34-all.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file bellsandwhistles-0.4.5-1.20.x-Create6.0+.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file BetterF3-7.0.2-Forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file betterp2p-1.5.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file blockui-1.20.1-1.0.193.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file blur-forge-3.1.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file botarium-forge-1.20.1-2.3.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Byzantine-1.21.1-35.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file chat_heads-0.13.18-forge-1.20.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file chipped-forge-1.20.1-3.0.7.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ChippedExpress-universal-20x.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file chunkloaders-1.2.9-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Chunky-1.3.146.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file collective-1.20.1-8.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file constructionwand-1.20.1-2.11.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file copycats-3.0.2+mc.1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file corpse-forge-1.20.1-1.0.21.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file corpsecurioscompat-1.20.x-Forge-3.0.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file craftingstation-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create-1.20.1-6.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create-new-age-forge-1.20.1-1.1.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create-stuff-additions1.20.1_v2.1.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_central_kitchen-1.20.1-for-create-6.0.4-1.4.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_connected-1.1.7-mc1.20.1-all.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_enchantment_industry-1.3.3-for-create-6.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_jetpack-forge-4.4.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_ltab-2.7.8.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_winery-1.7.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file createaddition-1.20.1-1.3.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file createcontraptionterminals-1.20-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file createdeco-2.0.3-1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file CreateNumismatics-1.0.15+forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file createrailwaysnavigator-forge-1.20.1-beta-0.8.4-C6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file CreativeCore_FORGE_v2.12.32_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Crystal-Clear-2.1-Beta-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file cupboard-1.20.1-2.7.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file curios-forge-5.14.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file design_decor-0.4.0b-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file domum_ornamentum-1.20.1-1.0.291-snapshot-universal.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file dragonlib-forge-1.20.1-2.2.24.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file DripSounds-1.19.4-0.3.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file EasyAnvils-v8.0.2-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file emi-1.1.22+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file emi_enchanting-0.1.2+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file emi_loot-0.7.6+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file emitrades-forge-1.2.1+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Emojiful-Forge-1.20.1-4.2.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file EnchantmentDescriptions-Forge-1.20.1-17.1.19.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file endrem_forge-5.3.3-R-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file entityculling-forge-1.8.2-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Explorify v1.6.2 f10-48.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ExtraLib-1.7.3-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file fallingleaves-1.20.1-2.1.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file fancymenu_forge_3.6.4_MC_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.8.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file fastboot-1.20.x-1.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FastFurnace-1.20.1-8.0.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FastLeafDecay-32.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FastSuite-1.20.1-5.1.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FastWorkbench-1.20.1-8.0.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ferritecore-6.0.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ForgeEndertech-1.20.1-11.1.8.0-build.1486.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FpsReducer2-forge-1.20.1-2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ftb-library-forge-2001.2.10.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ftb-quests-forge-2001.4.14.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ftb-teams-forge-2001.3.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ftb-xmod-compat-forge-2.1.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file fusion-1.2.10-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file fzzy_config-0.7.2+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.7.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file GlitchCore-forge-1.20.1-0.0.1.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file guideme-20.1.11.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Iceberg-1.20.1-forge-1.1.25.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ImmersiveUI-FORGE-0.3.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file interiors-0.5.6+forge-mc1.20.1-local.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file inventoryessentials-forge-1.20.1-8.2.9.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file inventorysorter-1.20.1-23.0.7.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Jade-1.20.1-Forge-11.13.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file JadeAddons-1.20.1-Forge-5.5.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file JadeColonies-1.20.1-1.4.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file jei-1.20.1-forge-15.20.0.112.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file jeiintegration_1.20.1-10.0.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file journeymap-1.20.1-5.10.3-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file JustEnoughProfessions-forge-1.20.1-3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file JustEnoughResources-1.20.1-1.4.0.247.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file konkrete_forge_1.8.0_MC_1.20-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file kubejs-create-forge-2001.3.0-build.8.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file kubejs-forge-2001.6.5-build.16.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file leaky-1.20.1-2.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file letmedespawn-1.20.x-forge-1.5.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file lootintegrations-1.20.1-4.7.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file lootintegrations_yungs-1.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-bridges-3.1.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-doors-1.1.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-fences-1.2.0-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-furniture-3.3.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-lights-1.1.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-roofs-2.3.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-stairs-1.0.1-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-trapdoors-1.1.4-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-windows-2.4.0-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcwfencesbop-1.20-1.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file melody_forge_1.0.3_MC_1.20.1-1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file minecolonies-1.20.1-1.1.1011-snapshot.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file modelfix-1.15.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file modernfix-forge-5.24.4+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file moonlight-1.20-2.16.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file MRU-1.0.4+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file multipiston-1.20-1.2.43-RELEASE.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file netherportalfix-forge-1.20-13.0.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file NoChatReports-FORGE-1.20.1-v2.2.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file notenoughanimations-forge-1.10.1-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file notenoughcrashes-4.4.9+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file OctoLib-FORGE-0.5.0.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file oculus-mc1.20.1-1.8.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ok_zoomer-forge-5.4.0-beta.8.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file open-parties-and-claims-forge-1.20.1-0.25.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file packetfixer-3.1.4-1.18-1.20.4-merged.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file particle_core-0.2.6+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file PickUpNotifier-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Placebo-1.20.1-8.6.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file player-animation-lib-forge-1.0.2-rc1+1.20.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ponderjs-1.20.1-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file PresenceFootsteps-1.20.1-1.9.1-beta.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file PuzzlesLib-v8.1.32-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file radium-mc1.20.1-0.12.4+git.26c9d8e.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file rechiseled-1.1.6-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file rechiseled_chipped-1.2.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file reforgedplaymod-1.20.1-0.3.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file rhino-forge-2001.2.3-build.10.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file shulkerboxtooltip-forge-4.0.4+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file skinlayers3d-forge-1.9.0-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file sliceanddice-forge-3.4.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.23.24.1302.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file sophisticatedcore-1.20.1-1.2.80.1073.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file sophisticatedstorage-1.20.1-1.3.59.1224.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file sound-physics-remastered-forge-1.20.1-1.4.15.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file starlight-1.1.2+forge.1cda73c.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Steam_Rails-1.6.12-alpha+forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file steampowered-1.20.1-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file structurize-1.20.1-1.0.781-snapshot.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file stylecolonies-1.20.1-1.15.28.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file supermartijn642corelib-1.1.18-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Terralith_1.20.x_v2.5.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file tfmg-1.0.2c.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file tl_skin_cape_forge_1.20_1.20.1-1.32.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ToastControl-1.20.1-8.0.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file toms_storage-1.20-1.7.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file towntalk-1.20.1-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file vintageimprovements-1.20.1-0.2.0.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file visuality-forge-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file voicechat-forge-1.20.1-2.5.36.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file watut-forge-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsApi-1.20-Forge-4.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterDesertTemples-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterDungeons-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterEndIsland-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterJungleTemples-1.20-Forge-2.0.5.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterStrongholds-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterWitchHuts-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Zeta-1.0-30.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/WARN]: Mod file C:\Users\biver\AppData\Roaming\.minecraft\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.0\fmlcore-1.20.1-47.4.0.jar is missing mods.toml file [00:43:08] [main/WARN]: Mod file C:\Users\biver\AppData\Roaming\.minecraft\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.0\javafmllanguage-1.20.1-47.4.0.jar is missing mods.toml file [00:43:08] [main/WARN]: Mod file C:\Users\biver\AppData\Roaming\.minecraft\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.0\lowcodelanguage-1.20.1-47.4.0.jar is missing mods.toml file [00:43:08] [main/WARN]: Mod file C:\Users\biver\AppData\Roaming\.minecraft\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.0\mclanguage-1.20.1-47.4.0.jar is missing mods.toml file [00:43:08] [main/INFO]: Found mod file fmlcore-1.20.1-47.4.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:08] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:08] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:08] [main/INFO]: Found mod file mclanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:08] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:08] [main/INFO]: Found mod file forge-1.20.1-47.4.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:09] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [00:43:09] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: dragonlib. Using Mod File: C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods\dragonlib-forge-1.20.1-2.2.24.jar [00:43:09] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: architectury. Using Mod File: C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods\architectury-9.2.14-forge.jar [00:43:09] [main/INFO]: Found 39 dependencies adding them to mods collection [00:43:09] [main/INFO]: Found mod file kuma-api-forge-20.1.10+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file aspectjrt-1.8.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [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@60d40ff4 [00:43:09] [main/INFO]: Found mod file kfflang-4.11.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file Ponder-Forge-1.20.1-1.0.81.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file Registrate-MC1.20-1.3.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file json-0.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file google-api-client-java6-1.20.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file TRender-1.0.6-1.20.1-forge-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file wrench_wrapper-0.6.2.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file snakeyaml-2.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file kffmod-4.11.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file kfflib-4.11.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file bytecodecs-1.0.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file flywheel-forge-1.20.1-1.0.4-243.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file jgltf-model-3af6de4.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file lwjgl-utils-27dcd66.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file MixinExtras-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file jcpp-1.4.14.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file opennbt-0a02214.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file mixinextras-forge-0.2.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file jankson-1.2.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file conditional-mixin-forge-0.6.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file TRansition-1.0.4-1.20.1-forge-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file commons-exec-1.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file animated-gif-lib-for-java-animated-gif-lib-1.7.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file flightlib-forge-2.1.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file 2.79.0-a0696f8.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file google-api-client-gson-1.20.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file google-oauth-client-jetty-1.20.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file puzzlesaccessapi-forge-20.1.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file google-api-services-youtube-v3-rev178-1.22.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file tomlkt-jvm-0.3.7.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file isoparser-1.1.7.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file lwjgl-tinyexr-3.3.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file NanoLiveConfig-1.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file japng-0.5.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:10] [main/INFO]: OptiFineTransformationService.transformers [00:43:10] [main/INFO]: Targets: 412 [00:43:11] [main/INFO]: additionalClassesLocator: [optifine., net.optifine.] [00:43:14] [main/INFO]: Compatibility level set to JAVA_17 [00:43:14] [main/ERROR]: Mixin config mixins.satin.client.json does not specify "minVersion" property [00:43:14] [main/ERROR]: Mixin config emi_loot.mixins.json does not specify "minVersion" property [00:43:14] [main/INFO]: Successfully loaded Mixin Connector [ca.spottedleaf.starlight.mixin.MixinConnector] [00:43:14] [main/INFO]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [00:43:14] [main/INFO]: Successfully loaded Mixin Connector [org.tlauncher.MixinConnector] [00:43:14] [main/INFO]: Launching target 'forgeclient' with arguments [--version, креейт РіРѕСЂРѕРґ, --gameDir, C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ, --assetsDir, C:\Users\biver\AppData\Roaming\.minecraft\assets, --uuid, 23eed3e43ab3452fb0164dffda5e81b5, --username, Pon4ic, --assetIndex, 5, --accessToken, вќ„вќ„вќ„вќ„вќ„вќ„вќ„вќ„, --clientId, null, --xuid, null, --userType, mojang, --versionType, modified, --width, 925, --height, 530] [00:43:15] [main/INFO]: Loaded configuration file for ModernFix 5.24.4+mc1.20.1: 96 options available, 3 override(s) found [00:43:15] [main/WARN]: Option 'mixin.perf.faster_texture_stitching' overriden (by mods [optifine]) to 'false' [00:43:15] [main/WARN]: Option 'mixin.bugfix.entity_pose_stack' overriden (by mods [optifine]) to 'false' [00:43:15] [main/WARN]: Option 'mixin.launch.class_search_cache' overriden (by mods [optifine]) to 'false' [00:43:15] [main/FATAL]: OptiFine detected. Use of ModernFix with OptiFine is not supported due to its impact on launch time and breakage of Forge features. [00:43:15] [main/INFO]: Applying Nashorn fix [00:43:15] [main/INFO]: Applied Forge config corruption patch [00:43:15] [main/INFO]: Loaded configuration file for Radium: 125 options available, 1 override(s) found [00:43:15] [main/WARN]: Reference map 'tfmg.refmap.json' for design_decor.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:15] [main/WARN]: Reference map 'puzzlesaccessapi.common.refmap.json' for puzzlesaccessapi.common.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:15] [main/WARN]: Reference map 'steampowered.refmap.json' for steampowered.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:15] [main/INFO]: Loading 202 mods:     - adlods 8.1.7.0     - advancementplaques 1.6.9     - ae2 15.4.8     - ae2qolrecipes 1.3.0     - aiimprovements 0.5.2     - almanac 1.0.2     - ambientsounds 6.1.11     - amendments 1.20-2.1.2     - appleskin 2.5.1+mc1.20.1     - architectury 9.2.14     - athena 3.1.2     - baguettelib 1.0.0     - balm 7.3.34         \-- kuma_api 20.1.10     - bellsandwhistles 0.4.3-1.20.x     - betterdeserttemples 1.20-Forge-3.0.3     - betterdungeons 1.20-Forge-4.0.4     - betterendisland 1.20-Forge-2.0.6     - betterf3 7.0.2     - betterfortresses 1.20-Forge-2.0.6     - betterjungletemples 1.20-Forge-2.0.5     - bettermineshafts 1.20-Forge-4.0.4     - betteroceanmonuments 1.20-Forge-3.0.4     - betterp2p 1.5.0     - betterstrongholds 1.20-Forge-4.0.3     - betterwitchhuts 1.20-Forge-3.0.3     - blockui 1.20.1-1.0.193     - blur 3.1.1         \-- satin 1.20.1+1.15.0-SNAPSHOT     - bookshelf 20.2.13     - botarium 2.3.4     - byzantine 35.1     - carryon 2.1.2.7     - chat_heads 0.13.18     - chipped 3.0.7     - chipped_express 1.3.2     - chunkloaders 1.2.9     - chunky 1.3.146     - cloth_config 11.1.136     - collective 8.3     - configured 2.2.3     - constructionwand 1.20.1-2.11     - controlling 12.0.2     - copycats 3.0.2+mc.1.20.1-forge     - coroutil 1.20.1-1.3.7     - corpse 1.20.1-1.0.21     - corpsecurioscompat 3.0.2     - craftingstation 1.20.1-1.2.3     - create 6.0.6     - create_central_kitchen 1.4.1         \-- mixinextras 0.2.0     - create_connected 1.1.7-mc1.20.1     - create_enchantment_industry 1.3.3-for-create-6.0.6     - create_jetpack 4.4.2         \-- flightlib 2.1.0     - create_ltab 2.7.0     - create_new_age 1.1.4     - create_sa 2.1.0     - create_winery 1.7.0     - createaddition 1.20.1-1.3.1     - createcontraptionterminals 1.2.0     - createdeco 2.0.3-1.20.1-forge     - createrailwaysnavigator 1.20.1-beta-0.8.4-C6     - creativecore 2.12.32     - crystal_clear 2.1-Beta     - cupboard 1.20.1-2.7     - curios 5.14.1+1.20.1     - decorative_blocks 4.1.3     - design_decor 0.4.0b     - domum_ornamentum 1.20.1-1.0.291-snapshot     - dragonlib 1.20.1-2.2.24     - easyanvils 8.0.2     - easymagic 8.0.1     - emi 1.1.22+1.20.1+forge     - emi_enchanting 0.1.2+1.20.1+forge     - emi_loot 0.7.6+1.20.1+forge     - emitrades 1.2.1+mc1.20.1     - emojiful 4.2.0     - enchdesc 17.1.19     - endrem 5.3.3-R-1.20.1     - entityculling 1.8.2     - explorify 1.6.2     - extralib 1.7.3     - fallingleaves 2.1.2     - fancymenu 3.6.4     - farmersdelight 1.20.1-1.2.8     - fastbench 8.0.4     - fastboot 1.2     - fastfurnace 8.0.2     - fastleafdecay 32     - fastsuite 5.1.0     - ferritecore 6.0.1     - forge 47.4.0     - forgeendertech 11.1.8.0     - fpsreducer 1.20.1-2.5.1     - ftblibrary 2001.2.10     - ftbquests 2001.4.14     - ftbteams 2001.3.1     - ftbxmodcompat 2.1.3     - fusion 1.2.10     - fzzy_config 0.7.2+1.20.1+forge     - geckolib 4.7.3     - glitchcore 0.0.1.1     - guideme 20.1.11     - iceberg 1.1.25     - immersiveui 0.3.0     - interiors 0.5.6     - inventoryessentials 8.2.9     - inventorysorter 23.0.7     - jade 11.13.2+forge     - jadeaddons 5.5.0+forge     - jadecolonies 1.4.2     - jei 15.20.0.112     - jeiintegration 10.0.0     - jeresources 1.4.0.247     - journeymap 5.10.3     - justenoughprofessions 3.0.1     - konkrete 1.8.0     - kotlinforforge 4.11.0     - kubejs 2001.6.5-build.16     - kubejs_create 2001.3.0-build.8     - leaky 1.20.1-2.1     - letmedespawn 1.5.0     - lootintegrations 1.20.1-4.7     - lootintegrations_yungs 1     - mcwbridges 3.1.0     - mcwdoors 1.1.2     - mcwfences 1.2.0     - mcwfencesbop 1.20-1.2     - mcwfurnitures 3.3.0     - mcwlights 1.1.2     - mcwroofs 2.3.2     - mcwstairs 1.0.1     - mcwtrpdoors 1.1.4     - mcwwindows 2.4.0     - melody 1.0.2     - minecolonies 1.20.1-1.1.1011-snapshot     - minecraft 1.20.1     - modelfix 1.15     - modernfix 5.24.4+mc1.20.1     - moonlight 1.20-2.16.2     - mousetweaks 2.25.1     - mru 1.0.4+1.20.1+forge     - multipiston 1.20-1.2.43-RELEASE     - netherportalfix 13.0.1     - nochatreports 1.20.1-v2.2.2     - notenoughanimations 1.10.1     - notenoughcrashes 4.4.9+1.20.1     - numismatics 1.0.15+forge-mc1.20.1     - octolib 0.5.0.1     - oculus 1.8.0     - ok_zoomer 5.4.0-beta.8         \-- wrench_wrapper 0.6.2     - openpartiesandclaims 0.25.3     - packetfixer 3.1.4     - particle_core 0.2.6+1.20.1+forge         \-- conditional_mixin 0.6.4     - pickupnotifier 8.0.0     - placebo 8.6.3     - playeranimator 1.0.2-rc1+1.20     - ponderjs 2.0.6         |-- flywheel 1.0.4-243         \-- ponder 1.0.81     - presencefootsteps 1.20.1-1.9.1-beta.1     - puzzleslib 8.1.32         \-- puzzlesaccessapi 20.1.1     - radium 0.12.4+git.26c9d8e     - railways 1.6.12-alpha+forge-mc1.20.1     - rechiseled 1.1.6     - rechiseled_chipped 1.2     - reforgedplaymod 0.3.1         \-- replaymod 2.6.18     - resourcefullib 2.1.29     - rhino 2001.2.3-build.10     - searchables 1.0.3     - shulkerboxtooltip 4.0.4+1.20.1     - skinlayers3d 1.9.0         |-- transition 1.0.4         \-- trender 1.0.6     - sliceanddice 3.4.1     - sophisticatedbackpacks 3.23.24.1302     - sophisticatedcore 1.2.80.1073     - sophisticatedstorage 1.3.59.1224     - sound_physics_remastered 1.20.1-1.4.15     - starlight 1.1.2+forge.1cda73c     - steampowered 1.20.1-3.0.4     - structurize 1.20.1-1.0.781-snapshot     - stylecolonies 1.20.1-1.15.28     - supermartijn642configlib 1.1.8     - supermartijn642corelib 1.1.18     - terralith 2.5.4     - tfmg 1.0.2c     - tlskincape 1.32     - toastcontrol 8.0.3     - toms_storage 1.7.1     - towntalk 1.1.0     - vintageimprovements 1.20.1-0.2.0.3     - visuality 2.0.2     - voicechat 1.20.1-2.5.36     - waterdripsound 0.3.2     - watut 1.20.1-1.2.3     - yungsapi 1.20-Forge-4.0.6     - zeta 1.0-30 [00:43:16] [main/INFO]: OptiFine was detected. [00:43:16] [main/INFO]: OptiFabric was NOT detected. [00:43:16] [main/WARN]: Reference map 'Create-The_Factory_Must_Grow.refmap.json' for tfmg.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:16] [main/WARN]: Reference map 'betterp2p-forge-refmap.json' for betterp2p.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:16] [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 [00:43:16] [main/INFO]: Packet Fixer forge 1.19.4-1.20.1 has been applied successfully. [00:43:18] [main/WARN]: Error loading class: shadersmod/client/ShadersRender (java.lang.ClassNotFoundException: shadersmod.client.ShadersRender) [00:43:18] [main/WARN]: Error loading class: net/coderbot/iris/pipeline/HandRenderer (java.lang.ClassNotFoundException: net.coderbot.iris.pipeline.HandRenderer) [00:43:18] [main/WARN]: Error loading class: com/ultramega/showcaseitem/ShowcaseItemFeature (java.lang.ClassNotFoundException: com.ultramega.showcaseitem.ShowcaseItemFeature) [00:43:18] [main/WARN]: Error loading class: mekanism/client/render/entity/RenderFlame (java.lang.ClassNotFoundException: mekanism.client.render.entity.RenderFlame) [00:43:18] [main/WARN]: Error loading class: mekanism/client/render/armor/MekaSuitArmor (java.lang.ClassNotFoundException: mekanism.client.render.armor.MekaSuitArmor) [00:43:18] [main/WARN]: Force-disabling mixin 'alloc.blockstate.StateMixin' as option 'mixin.alloc.blockstate' (added by mods [ferritecore]) disables it and children [00:43:19] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [00:43:19] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [00:43:19] [main/INFO]: bre2el.fpsreducer.mixin.RenderSystemMixin will be applied. [00:43:19] [main/INFO]: bre2el.fpsreducer.mixin.WindowMixin will be applied. [00:43:19] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/SodiumWorldRenderer (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.SodiumWorldRenderer) [00:43:19] [main/WARN]: Error loading class: me/jellysquid/mods/lithium/common/ai/pathing/PathNodeDefaults (java.lang.ClassNotFoundException: me.jellysquid.mods.lithium.common.ai.pathing.PathNodeDefaults) [00:43:20] [main/WARN]: Error loading class: net/fabricmc/fabric/impl/datagen/FabricDataGenHelper (java.lang.ClassNotFoundException: net.fabricmc.fabric.impl.datagen.FabricDataGenHelper) [00:43:20] [main/WARN]: Error loading class: net/mehvahdjukaar/supplementaries/common/entities/SlimeBallEntity (java.lang.ClassNotFoundException: net.mehvahdjukaar.supplementaries.common.entities.SlimeBallEntity) [00:43:20] [main/WARN]: Error loading class: me/jellysquid/mods/lithium/common/ai/pathing/PathNodeDefaults (java.lang.ClassNotFoundException: me.jellysquid.mods.lithium.common.ai.pathing.PathNodeDefaults) [00:43:20] [main/WARN]: Error loading class: mezz/modnametooltip/TooltipEventHandler (java.lang.ClassNotFoundException: mezz.modnametooltip.TooltipEventHandler) [00:43:20] [main/WARN]: Error loading class: me/shedaniel/rei/impl/client/ClientHelperImpl (java.lang.ClassNotFoundException: me.shedaniel.rei.impl.client.ClientHelperImpl) [00:43:20] [main/WARN]: Error loading class: com/simibubi/create/foundation/ponder/PonderWorld (java.lang.ClassNotFoundException: com.simibubi.create.foundation.ponder.PonderWorld) [00:43:20] [main/WARN]: Error loading class: vazkii/quark/addons/oddities/inventory/BackpackMenu (java.lang.ClassNotFoundException: vazkii.quark.addons.oddities.inventory.BackpackMenu) [00:43:20] [main/WARN]: Error loading class: studio/fantasyit/ars_botania/event/CapEvent (java.lang.ClassNotFoundException: studio.fantasyit.ars_botania.event.CapEvent) [00:43:20] [main/WARN]: @Mixin target studio.fantasyit.ars_botania.event.CapEvent was not found create_central_kitchen.mixins.json:common.arsbotania.CapEventMixin [00:43:20] [main/WARN]: Error loading class: dan200/computercraft/shared/integration/MoreRedIntegration (java.lang.ClassNotFoundException: dan200.computercraft.shared.integration.MoreRedIntegration) [00:43:20] [main/WARN]: @Mixin target dan200.computercraft.shared.integration.MoreRedIntegration was not found create_central_kitchen.mixins.json:common.computercraft.MoreRedIntegrationMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/CoffeeBushBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.CoffeeBushBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.CoffeeBushBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.CoffeeBushBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/CoffeeBushTopBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.CoffeeBushTopBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.CoffeeBushTopBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.CoffeeBushTopBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/CoffeeDoubleStemBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.CoffeeDoubleStemBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.CoffeeDoubleStemBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.CoffeeDoubleStemBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/CoffeeMiddleStemBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.CoffeeMiddleStemBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.CoffeeMiddleStemBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.CoffeeMiddleStemBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/CoffeeStemBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.CoffeeStemBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.CoffeeStemBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.CoffeeStemBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/entity/KettleBlockEntity (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.entity.KettleBlockEntity) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.entity.KettleBlockEntity was not found create_central_kitchen.mixins.json:common.farmersrespite.KettleBlockEntityMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/SmallTeaBushBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.SmallTeaBushBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.SmallTeaBushBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.SmallTeaBushBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/TeaBushBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.TeaBushBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.TeaBushBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.TeaBushBlockMixin [00:43:20] [main/WARN]: Error loading class: com/sammy/minersdelight/content/block/copper_pot/CopperPotBlockEntity (java.lang.ClassNotFoundException: com.sammy.minersdelight.content.block.copper_pot.CopperPotBlockEntity) [00:43:20] [main/WARN]: @Mixin target com.sammy.minersdelight.content.block.copper_pot.CopperPotBlockEntity was not found create_central_kitchen.mixins.json:common.minersdelight.CopperPotBlockEntityMixin [00:43:20] [main/WARN]: Error loading class: com/sammy/minersdelight/content/block/sticky_basket/StickyBasketBlockEntity (java.lang.ClassNotFoundException: com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity) [00:43:20] [main/WARN]: @Mixin target com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity was not found create_central_kitchen.mixins.json:common.minersdelight.StickyBasketBlockEntityAccessor [00:43:20] [main/WARN]: Error loading class: com/sammy/minersdelight/content/block/sticky_basket/StickyBasketBlockEntity (java.lang.ClassNotFoundException: com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity) [00:43:20] [main/WARN]: @Mixin target com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity was not found create_central_kitchen.mixins.json:common.minersdelight.StickyBasketBlockEntityMixin [00:43:20] [main/WARN]: Error loading class: com/teamabnormals/neapolitan/common/item/DrinkItem (java.lang.ClassNotFoundException: com.teamabnormals.neapolitan.common.item.DrinkItem) [00:43:20] [main/WARN]: @Mixin target com.teamabnormals.neapolitan.common.item.DrinkItem was not found create_central_kitchen.mixins.json:common.neapolitan.DrinkItemMixin [00:43:20] [main/WARN]: Error loading class: net/orcinus/overweightfarming/blocks/CropFullBlock (java.lang.ClassNotFoundException: net.orcinus.overweightfarming.blocks.CropFullBlock) [00:43:20] [main/WARN]: @Mixin target net.orcinus.overweightfarming.blocks.CropFullBlock was not found create_central_kitchen.mixins.json:common.overweightfarming.CropFullBlockMixin [00:43:20] [main/WARN]: Error loading class: shadersmod/client/ShadersRender (java.lang.ClassNotFoundException: shadersmod.client.ShadersRender) [00:43:20] [main/WARN]: Error loading class: shadersmod/client/ShadersRender (java.lang.ClassNotFoundException: shadersmod.client.ShadersRender) [00:43:21] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). [00:43:21] [main/INFO]: Mixing client.MixinMinecraft from mixins/common/nochatreports.mixins.json into net.minecraft.client.Minecraft [00:43:22] [main/WARN]: Static binding violation: PRIVATE @Overwrite method m_216202_ in modernfix-forge.mixins.json:perf.tag_id_caching.TagOrElementLocationMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [00:43:22] [main/INFO]: Injecting BlockStateBase cache population hook into getOpacityIfCached from ca.spottedleaf.starlight.mixin.common.blockstate.BlockStateBaseMixin [00:43:22] [main/INFO]: Injecting BlockStateBase cache population hook into getNeighborPathNodeType from me.jellysquid.mods.lithium.mixin.ai.pathing.AbstractBlockStateMixin [00:43:22] [main/INFO]: Injecting BlockStateBase cache population hook into getPathNodeType from me.jellysquid.mods.lithium.mixin.ai.pathing.AbstractBlockStateMixin [00:43:22] [main/INFO]: Injecting BlockStateBase cache population hook into isConditionallyFullOpaque from ca.spottedleaf.starlight.mixin.common.blockstate.BlockStateBaseMixin [00:43:22] [main/INFO]: Injecting BlockStateBase cache population hook into getAllFlags from me.jellysquid.mods.lithium.mixin.util.block_tracking.AbstractBlockStateMixin [00:43:22] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [00:43:22] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [00:43:22] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [00:43:22] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel Exception in thread "main"   <log4j:Event logger="STDERR" timestamp="1755639803350" level="INFO" thread="main">     <log4j:Message><![CDATA[[java.lang.ThreadGroup:uncaughtException:1077]: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException]]></log4j:Message>   </log4j:Event> [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:32) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.Launcher.run(Launcher.java:108) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.Launcher.main(Launcher.java:78) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at cpw.mods.bootstraplauncher@1.1.2/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]: Caused by: java.lang.reflect.InvocationTargetException [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at java.base/java.lang.reflect.Method.invoke(Method.java:568) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/fmlloader@1.20.1-47.4.0/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/fmlloader@1.20.1-47.4.0/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/fmlloader@1.20.1-47.4.0/net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     ... 7 more [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]: Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at TRANSFORMER/net.optifine/net.optifine.reflect.Reflector.<clinit>(Reflector.java:283) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.CrashReport.m_127526_(CrashReport.java:175) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.CrashReport.m_127529_(CrashReport.java:345) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.client.main.Main.main(Main.java:149) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     ... 15 more [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]: Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: Critical injection failure: Callback method iris$beginClouds(Lcom/mojang/blaze3d/vertex/PoseStack;Lorg/joml/Matrix4f;FDDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V in mixins.oculus.json:MixinLevelRenderer failed injection check, (0/1) succeeded. Scanned 1 target(s). Using refmap oculus-mixins-refmap.json [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.injection.struct.InjectionInfo.postInject(InjectionInfo.java:468) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1362) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1051) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:400) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:325) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:383) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:365) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     ... 32 more Here I am! [VersionManager] Refreshing versions locally... [VersionManager] Versions has been refreshed (110 ms) [Launcher] Launcher exited. [Launcher] Minecraft closed with exit code: 1 flush now flush now  
    • Also remove cc-tweaked The build you are using is not compatible with Create
    • https://mclo.gs/D91YYGv been reformatted
    • Almost worked. But no that didn’t fix it mostly 
    • Add crash-reports with sites like https://mclo.gs/ Does it work without bettercombat?
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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