Jump to content

[1.12.2[ Texture error


Stenbergcsgo

Recommended Posts

No, Registration has to be done on both client and server therefore it is in CommonProxy

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

Can you post

ClientProxy

CommonProxy

ModItems

ItemPaste

RegistryHandler

Paste.json

Forge Log

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

Yea was just about to say, some of this has to be messed up by now, appreciate the help btw.

 

ClientProxy:

package com.mta.utzonmod.proxy;

import com.mta.utzonmod.init.ModItems;

import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.item.Item;
import net.minecraftforge.client.event.ModelRegistryEvent;
import net.minecraftforge.client.model.ModelLoader;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

@Mod.EventBusSubscriber
public class ClientProxy extends CommonProxy {
	@SubscribeEvent
	public static void registerModels(ModelRegistryEvent event)
	{
		for (Item item: ModItems.ITEMS)
		{
			if(!item.getHasSubtypes()) {
				ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory"));
			} else {
//do stuff
}
}
}
}

 

CommonProxy:

package com.mta.utzonmod.proxy;

import com.mta.utzonmod.init.ModItems;

import net.minecraft.item.Item;
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

@Mod.EventBusSubscriber
public class CommonProxy {
  @SubscribeEvent
    public static void registerItems(RegistryEvent.Register<Item> event)
  {	
    event.getRegistry().registerAll(ModItems.ITEMS);
  }
}

 

ModItems:

package com.mta.utzonmod.init;

import com.mta.utzonmod.items.ItemPaste;
import net.minecraft.item.Item;

public class ModItems {
  public static final ItemPaste PASTE = new ItemPaste("paste");
  
  public static final Item[] ITEMS = {
    PASTE,
  };
  
}

 

ItemPaste:

package com.mta.utzonmod.items;

public class ItemPaste extends ItemBase
{
	public ItemPaste(String name)
	{
		super(name);
	}
}

 

RegistryHandler:

package com.mta.utzonmod.util.handlers;

import com.mta.utzonmod.init.ModItems;

import net.minecraft.item.Item;
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.fml.common.Mod.EventBusSubscriber;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

@EventBusSubscriber
public class RegistryHandler {
	@SubscribeEvent
	public static void onItemRegister(RegistryEvent.Register<Item> event) {
		event.getRegistry().registerAll(ModItems.ITEMS);
	}
}

 

Paste.json:

{
   "parent": "item/generated",
   "textures": {
       "layer0": "um:items/paste"
   }
}

 

Log:

[14:07:40] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[14:07:40] [main/INFO] [FML/]: Forge Mod Loader version 14.23.2.2624 for Minecraft 1.12.2 loading
[14:07:40] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_131, running on Windows 8.1:amd64:6.3, installed at C:\Program Files\Java\jre1.8.0_131
[14:07:40] [main/DEBUG] [FML/]: Java classpath at launch is:
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\Desktop\WorkspaceUno\Mod\bin
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\minecraft\net\minecraftforge\forge\1.12.2-14.23.2.2624\snapshot\20171003\forgeSrc-1.12.2-14.23.2.2624.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.1\f7be08ec23c21485b9b5a1cf1654c2ec8c58168d\jsr305-3.0.1.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\1.1\aef610b34a1be37fa851825f12372b78424d8903\patchy-1.1.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\4.4.0\cb208278274bf12ebdb56c61bd7407e6f774d65a\jna-4.4.0.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.3\cdd846cfc4e0f7eefafc02c0f5dce32b9303aa2a\jopt-simple-5.0.3.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.1.9.Final\97860965d6a0a6b98e7f569f3f966727b8db75\netty-all-4.1.9.Final.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\21.0\3a3d111be1be1b745edfa7d91678a12d7ed38709\guava-21.0.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.5\6c6c702c89bfff3cd9e80b04d668c5e190d588c6\commons-lang3-3.5.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.5\2852e6e05fbb95076fc091f6d1780f1f8fe35e0f\commons-io-2.5.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.10\4b95f4897fa13f2cd904aee711aeafc0c5295cd8\commons-codec-1.10.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.8.0\c4ba5371a29ac9b2ad6129b1d39ea38750043eff\gson-2.8.0.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.25\9834cdf236c22e84b946bba989e2f94ef5897c3c\authlib-1.5.25.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.10.19\c0e1cddb173faa8bf69a4236211cfd0af6c6150d\realms-1.10.19.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.1.0\9835253257524c1be7ab50c057aa2d418fb72082\fastutil-7.1.0.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.8.1\e801d13612e22cad62a3f4f3fe7fdbe6334a8e72\log4j-api-2.8.1.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.8.1\4ac28ff2f1ddf05dae3043a190451e8c46b73c31\log4j-core-2.8.1.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.10.3\48fd510879dff266c3815947de66e3d4809f8668\text2speech-1.10.3.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.2\3354e11e2b34215f06dab629ab88e06aca477c19\asm-debug-all-5.2.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.4-nightly-20150209\d51a7c040a721d13efdfbd34f8b257b2df882ad0\lwjgl_util-2.9.4-nightly-20150209.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\ca.weblite\java-objc-bridge\1.0.0\6ef160c3133a78de015830860197602ca1c855d3\java-objc-bridge-1.0.0.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0\lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\931074f46c795d2f7b30ed6395df5715cfd7675b\lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\bcab850f8f487c3f4c4dbabde778bb82bd1a40ed\lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\.gradle\caches\minecraft\net\minecraftforge\forge\1.12.2-14.23.2.2624\start
[14:07:40] [main/DEBUG] [FML/]: Java library path at launch is:
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files\Java\jre1.8.0_131\bin
[14:07:40] [main/DEBUG] [FML/]:     C:\windows\Sun\Java\bin
[14:07:40] [main/DEBUG] [FML/]:     C:\windows\system32
[14:07:40] [main/DEBUG] [FML/]:     C:\windows
[14:07:40] [main/DEBUG] [FML/]:     C:/Program Files/Java/jre1.8.0_131/bin/server
[14:07:40] [main/DEBUG] [FML/]:     C:/Program Files/Java/jre1.8.0_131/bin
[14:07:40] [main/DEBUG] [FML/]:     C:/Program Files/Java/jre1.8.0_131/lib/amd64
[14:07:40] [main/DEBUG] [FML/]:     C:\ProgramData\Oracle\Java\javapath
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files (x86)\Lenovo\FusionEngine
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files (x86)\Intel\iCLS Client\
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files\Intel\iCLS Client\
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common
[14:07:40] [main/DEBUG] [FML/]:     C:\windows\system32
[14:07:40] [main/DEBUG] [FML/]:     C:\windows
[14:07:40] [main/DEBUG] [FML/]:     C:\windows\System32\Wbem
[14:07:40] [main/DEBUG] [FML/]:     C:\windows\System32\WindowsPowerShell\v1.0\
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files\Intel\Intel(R) Management Engine Components\DAL
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files\Intel\Intel(R) Management Engine Components\IPT
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files\Intel\WiFi\bin\
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files\Common Files\Intel\WirelessCommon\
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files (x86)\Common Files\lenovo\easyplussdk\bin
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files\Microsoft SQL Server\110\Tools\Binn\
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.0\
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files\Microsoft SQL Server\120\Tools\Binn\
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files (x86)\GtkSharp\2.12\bin
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files\Git\cmd
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files (x86)\nodejs\
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files\MATLAB\R2016b\runtime\win64
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files\MATLAB\R2016b\bin
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files (x86)\PuTTY\
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files\Java\jdk1.8.0_131\bin
[14:07:40] [main/DEBUG] [FML/]:     C:\Program Files (x86)\sbt\bin
[14:07:40] [main/DEBUG] [FML/]:     C:\Gradle\gradle-4.6\bin
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\AppData\Roaming\npm
[14:07:40] [main/DEBUG] [FML/]:     C:\Users\Frederik\AppData\Local\GitHubDesktop\bin
[14:07:40] [main/DEBUG] [FML/]:     C:\windows\system32
[14:07:40] [main/DEBUG] [FML/]:     
[14:07:40] [main/DEBUG] [FML/]:     .
[14:07:40] [main/DEBUG] [FML/]:     C:/Users/Frederik/.gradle/caches/minecraft/net/minecraft/natives/1.12.2
[14:07:40] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[14:07:40] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin
[14:07:40] [main/INFO] [FML/]: Ignoring missing certificate for coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin), we are in deobf and it's a forge core plugin
[14:07:40] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
[14:07:40] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin
[14:07:40] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin
[14:07:40] [main/INFO] [FML/]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin
[14:07:40] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin
[14:07:40] [main/DEBUG] [FML/]: All fundamental core mods are successfully located
[14:07:40] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\Frederik\Desktop\WorkspaceUno\Mod\.
[14:07:40] [main/DEBUG] [FML/]: Discovering coremods
[14:07:40] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[14:07:40] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[14:07:40] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[14:07:40] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[14:07:40] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[14:07:40] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[14:07:40] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[14:07:40] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[14:07:40] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[14:07:40] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin \{net.minecraftforge.fml.relauncher.FMLCorePlugin\} class transformers
[14:07:40] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer
[14:07:40] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer
[14:07:40] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer
[14:07:40] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer
[14:07:40] [main/DEBUG] [FML/]: Injection complete
[14:07:40] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin \{net.minecraftforge.fml.relauncher.FMLCorePlugin\}
[14:07:40] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin
[14:07:41] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[14:07:41] [main/DEBUG] [FML/]: Loading deobfuscation resource C:\Users\Frederik\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20171003\1.12.2\srgs\srg-mcp.srg with 36076 records
[14:07:43] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing
[14:07:43] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully
[14:07:43] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[14:07:43] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin \{net.minecraftforge.classloading.FMLForgePlugin\} class transformers
[14:07:43] [main/DEBUG] [FML/]: Injection complete
[14:07:43] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin \{net.minecraftforge.classloading.FMLForgePlugin\}
[14:07:43] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin
[14:07:43] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully
[14:07:43] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[14:07:43] [main/DEBUG] [FML/]: Loaded 209 rules from AccessTransformer config file forge_at.cfg
[14:07:43] [main/DEBUG] [FML/]: Validating minecraft
[14:07:44] [main/DEBUG] [FML/]: Minecraft validated, launching...
[14:07:44] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[14:07:44] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[14:07:44] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[14:07:44] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[14:07:55] [main/DEBUG] [FML/]: Creating vanilla freeze snapshot
[14:07:55] [main/DEBUG] [FML/]: Vanilla freeze snapshot created
[14:07:57] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0.002s
[14:07:58] [main/INFO] [FML/]: -- System Details --
Details:
	Minecraft Version: 1.12.2
	Operating System: Windows 8.1 (amd64) version 6.3
	Java Version: 1.8.0_131, Oracle Corporation
	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
	Memory: 328605736 bytes (313 MB) / 499646464 bytes (476 MB) up to 1884815360 bytes (1797 MB)
	JVM Flags: 0 total; 
	IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
	FML: 
	Loaded coremods (and transformers): 
	GL info: ' Vendor: 'Intel' Version: '4.2.0 - Build 10.18.10.3910' Renderer: 'Intel(R) HD Graphics 4400'
[14:07:58] [main/INFO] [FML/]: MinecraftForge v14.23.2.2624 Initialized
[14:07:58] [main/INFO] [FML/]: Starts to replace vanilla recipe ingredients with ore ingredients.
[14:07:58] [main/INFO] [FML/]: Replaced 1036 ore ingredients
[14:07:58] [main/DEBUG] [FML/]: File C:\Users\Frederik\Desktop\WorkspaceUno\Mod\config\injectedDependencies.json not found. No dependencies injected
[14:07:58] [main/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]
[14:07:58] [main/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes
[14:07:58] [main/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Frederik\Desktop\WorkspaceUno\Mod\bin, examining for mod candidates
[14:07:58] [main/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Frederik\.gradle\caches\minecraft\net\minecraftforge\forge\1.12.2-14.23.2.2624\snapshot\20171003\forgeSrc-1.12.2-14.23.2.2624.jar, examining for mod candidates
[14:07:58] [main/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.1\f7be08ec23c21485b9b5a1cf1654c2ec8c58168d\jsr305-3.0.1.jar, examining for mod candidates
[14:07:58] [main/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\1.1\aef610b34a1be37fa851825f12372b78424d8903\patchy-1.1.jar, examining for mod candidates
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\4.4.0\cb208278274bf12ebdb56c61bd7407e6f774d65a\jna-4.4.0.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.3\cdd846cfc4e0f7eefafc02c0f5dce32b9303aa2a\jopt-simple-5.0.3.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.1.9.Final\97860965d6a0a6b98e7f569f3f966727b8db75\netty-all-4.1.9.Final.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\21.0\3a3d111be1be1b745edfa7d91678a12d7ed38709\guava-21.0.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.5\6c6c702c89bfff3cd9e80b04d668c5e190d588c6\commons-lang3-3.5.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.5\2852e6e05fbb95076fc091f6d1780f1f8fe35e0f\commons-io-2.5.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.10\4b95f4897fa13f2cd904aee711aeafc0c5295cd8\commons-codec-1.10.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.8.0\c4ba5371a29ac9b2ad6129b1d39ea38750043eff\gson-2.8.0.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.25\9834cdf236c22e84b946bba989e2f94ef5897c3c\authlib-1.5.25.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.10.19\c0e1cddb173faa8bf69a4236211cfd0af6c6150d\realms-1.10.19.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.1.0\9835253257524c1be7ab50c057aa2d418fb72082\fastutil-7.1.0.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.8.1\e801d13612e22cad62a3f4f3fe7fdbe6334a8e72\log4j-api-2.8.1.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.8.1\4ac28ff2f1ddf05dae3043a190451e8c46b73c31\log4j-core-2.8.1.jar
[14:07:58] [main/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.10.3\48fd510879dff266c3815947de66e3d4809f8668\text2speech-1.10.3.jar, examining for mod candidates
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar
[14:07:58] [main/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.2\3354e11e2b34215f06dab629ab88e06aca477c19\asm-debug-all-5.2.jar, examining for mod candidates
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.4-nightly-20150209\d51a7c040a721d13efdfbd34f8b257b2df882ad0\lwjgl_util-2.9.4-nightly-20150209.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar
[14:07:58] [main/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\ca.weblite\java-objc-bridge\1.0.0\6ef160c3133a78de015830860197602ca1c855d3\java-objc-bridge-1.0.0.jar, examining for mod candidates
[14:07:58] [main/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar, examining for mod candidates
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0\lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\931074f46c795d2f7b30ed6395df5715cfd7675b\lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar
[14:07:58] [main/TRACE] [FML/]: Skipping known library file C:\Users\Frederik\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\bcab850f8f487c3f4c4dbabde778bb82bd1a40ed\lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar
[14:07:58] [main/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Frederik\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates
[14:07:58] [main/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Frederik\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates
[14:07:58] [main/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Frederik\.gradle\caches\minecraft\net\minecraftforge\forge\1.12.2-14.23.2.2624\start, examining for mod candidates
[14:07:58] [main/DEBUG] [FML/]: Minecraft jar mods loaded successfully
[14:07:58] [main/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer
[14:07:58] [main/INFO] [FML/]: Searching C:\Users\Frederik\Desktop\WorkspaceUno\Mod\mods for mods
[14:07:58] [main/DEBUG] [FML/]: Examining directory bin for potential mods
[14:07:58] [main/DEBUG] [FML/]: Found an mcmod.info file in directory bin
[14:07:58] [main/TRACE] [FML/]: Recursing into package assets
[14:07:58] [main/TRACE] [FML/]: Recursing into package assets/um
[14:07:58] [main/TRACE] [FML/]: Recursing into package assets/um/lang
[14:07:58] [main/TRACE] [FML/]: Recursing into package assets/um/models
[14:07:58] [main/TRACE] [FML/]: Recursing into package assets/um/models/item
[14:07:58] [main/TRACE] [FML/]: Recursing into package assets/um/textures
[14:07:58] [main/TRACE] [FML/]: Recursing into package assets/um/textures/ítems
[14:07:58] [main/TRACE] [FML/]: Recursing into package com
[14:07:58] [main/TRACE] [FML/]: Recursing into package com/mta
[14:07:58] [main/TRACE] [FML/]: Recursing into package com/mta/utzonmod
[14:07:58] [main/TRACE] [FML/]: Recursing into package com/mta/utzonmod/init
[14:07:59] [main/TRACE] [FML/]: Recursing into package com/mta/utzonmod/items
[14:07:59] [main/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (com.mta.utzonmod.Main) - loading
[14:07:59] [main/TRACE] [um/]: Parsed dependency info : Requirements: [] After:[] Before:[]
[14:07:59] [main/TRACE] [FML/]: Recursing into package com/mta/utzonmod/proxy
[14:07:59] [main/TRACE] [FML/]: Recursing into package com/mta/utzonmod/util
[14:07:59] [main/TRACE] [FML/]: Recursing into package com/mta/utzonmod/util/handlers
[14:07:59] [main/DEBUG] [FML/]: Examining file forgeSrc-1.12.2-14.23.2.2624.jar for potential mods
[14:07:59] [main/DEBUG] [FML/]: The mod container forgeSrc-1.12.2-14.23.2.2624.jar appears to be missing an mcmod.info file
[14:08:01] [main/DEBUG] [FML/]: Examining file jsr305-3.0.1.jar for potential mods
[14:08:01] [main/DEBUG] [FML/]: The mod container jsr305-3.0.1.jar appears to be missing an mcmod.info file
[14:08:01] [main/DEBUG] [FML/]: Examining file patchy-1.1.jar for potential mods
[14:08:01] [main/DEBUG] [FML/]: The mod container patchy-1.1.jar appears to be missing an mcmod.info file
[14:08:01] [main/DEBUG] [FML/]: Examining file text2speech-1.10.3.jar for potential mods
[14:08:01] [main/DEBUG] [FML/]: The mod container text2speech-1.10.3.jar appears to be missing an mcmod.info file
[14:08:01] [main/DEBUG] [FML/]: Examining file asm-debug-all-5.2.jar for potential mods
[14:08:01] [main/DEBUG] [FML/]: The mod container asm-debug-all-5.2.jar appears to be missing an mcmod.info file
[14:08:01] [main/DEBUG] [FML/]: Examining file java-objc-bridge-1.0.0.jar for potential mods
[14:08:01] [main/DEBUG] [FML/]: The mod container java-objc-bridge-1.0.0.jar appears to be missing an mcmod.info file
[14:08:01] [main/DEBUG] [FML/]: Examining file jansi-1.11.jar for potential mods
[14:08:01] [main/DEBUG] [FML/]: The mod container jansi-1.11.jar appears to be missing an mcmod.info file
[14:08:01] [main/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods
[14:08:01] [main/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file
[14:08:01] [main/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods
[14:08:01] [main/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file
[14:08:01] [main/DEBUG] [FML/]: Examining directory start for potential mods
[14:08:01] [main/DEBUG] [FML/]: No mcmod.info file found in directory start
[14:08:01] [main/TRACE] [FML/]: Recursing into package net
[14:08:01] [main/TRACE] [FML/]: Recursing into package net/minecraftforge
[14:08:01] [main/TRACE] [FML/]: Recursing into package net/minecraftforge/gradle
[14:08:01] [main/TRACE] [FML/]: Recursing into package net/minecraftforge/gradle/tweakers
[14:08:01] [main/INFO] [FML/]: Forge Mod Loader has identified 5 mods to load
[14:08:01] [main/TRACE] [FML/]: Received a system property request ''
[14:08:01] [main/TRACE] [FML/]: System property request managing the state of 0 mods
[14:08:01] [main/DEBUG] [FML/]: After merging, found state information for 0 mods
[14:08:01] [main/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[14:08:01] [main/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[14:08:01] [main/DEBUG] [um/]: Enabling mod um
[14:08:01] [main/TRACE] [FML/]: Verifying mod requirements are satisfied
[14:08:01] [main/TRACE] [FML/]: All mod requirements are satisfied
[14:08:01] [main/TRACE] [FML/]: Sorting mods into an ordered list
[14:08:01] [main/TRACE] [FML/]: Mod sorting completed successfully
[14:08:01] [main/DEBUG] [FML/]: Mod sorting data
[14:08:01] [main/DEBUG] [FML/]: 	um(Utzon Mod:1.0): bin ()
[14:08:02] [main/DEBUG] [FML/]: Loading @Config anotation data
[14:08:02] [main/TRACE] [minecraft/minecraft]: Sending event FMLConstructionEvent to mod minecraft
[14:08:02] [main/TRACE] [minecraft/minecraft]: Sent event FMLConstructionEvent to mod minecraft
[14:08:02] [main/DEBUG] [FML/]: Bar Step: Construction - Minecraft took 0.017s
[14:08:02] [main/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp
[14:08:02] [main/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp
[14:08:02] [main/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0.001s
[14:08:02] [main/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML
[14:08:02] [main/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists
[14:08:02] [main/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection
[14:08:02] [main/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99)
[14:08:02] [main/INFO] [FML/FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, um] at CLIENT
[14:08:02] [main/INFO] [FML/FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, um] at SERVER
[14:08:04] [main/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML
[14:08:04] [main/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 1.929s
[14:08:04] [main/TRACE] [forge/forge]: Sending event FMLConstructionEvent to mod forge
[14:08:04] [main/DEBUG] [forge/forge]: Loading Vanilla annotations: null
[14:08:04] [main/DEBUG] [forge/forge]: Preloading CrashReport Classes
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$10
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$11
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$12
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$13
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$14
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$3
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$4
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$5
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$6
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$7
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$8
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/Minecraft$9
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/multiplayer/WorldClient$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/multiplayer/WorldClient$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/multiplayer/WorldClient$3
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/multiplayer/WorldClient$4
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/particle/ParticleManager$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/particle/ParticleManager$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/particle/ParticleManager$3
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/particle/ParticleManager$4
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/EntityRenderer$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/EntityRenderer$3
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/EntityRenderer$4
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/RenderGlobal$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/RenderItem$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/RenderItem$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/RenderItem$3
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/RenderItem$4
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/texture/TextureAtlasSprite$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/texture/TextureManager$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/texture/TextureMap$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/texture/TextureMap$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/client/renderer/texture/TextureMap$3
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReport$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReport$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReport$3
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReport$4
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReport$5
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReport$6
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReport$7
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReportCategory$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReportCategory$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReportCategory$3
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReportCategory$4
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/crash/CrashReportCategory$5
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/entity/Entity$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/entity/Entity$3
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/entity/Entity$4
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/entity/Entity$5
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/entity/EntityTracker$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/entity/player/InventoryPlayer$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/nbt/NBTTagCompound$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/nbt/NBTTagCompound$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/network/NetHandlerPlayServer$3
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/network/NetworkSystem$6
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/server/MinecraftServer$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/server/MinecraftServer$3
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/server/dedicated/DedicatedServer$3
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/server/dedicated/DedicatedServer$4
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/server/integrated/IntegratedServer$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/server/integrated/IntegratedServer$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/tileentity/CommandBlockBaseLogic$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/tileentity/CommandBlockBaseLogic$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/tileentity/TileEntity$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/tileentity/TileEntity$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/tileentity/TileEntity$3
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/World$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/World$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/World$3
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/World$4
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/World$5
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/chunk/Chunk$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/gen/structure/MapGenStructure$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/gen/structure/MapGenStructure$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/gen/structure/MapGenStructure$3
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$10
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$2
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$3
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$4
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$5
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$6
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$7
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$8
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraft/world/storage/WorldInfo$9
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraftforge/common/util/TextTable
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraftforge/common/util/TextTable$Alignment
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraftforge/common/util/TextTable$Column
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraftforge/common/util/TextTable$Row
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraftforge/fml/client/SplashProgress$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraftforge/fml/common/FMLCommonHandler$1
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraftforge/fml/common/ICrashCallable
[14:08:04] [main/DEBUG] [forge/forge]: 	net/minecraftforge/fml/common/Loader$1
[14:08:04] [main/TRACE] [FML/forge]: Mod forge is using network checker : No network checking performed
[14:08:04] [main/TRACE] [FML/forge]: Testing mod forge to verify it accepts its own version in a remote connection
[14:08:04] [main/TRACE] [FML/forge]: The mod forge accepts its own version (14.23.2.2624)
[14:08:04] [main/DEBUG] [FML/forge]: Attempting to inject @Config classes into forge for type INSTANCE
[14:08:04] [main/TRACE] [forge/forge]: Sent event FMLConstructionEvent to mod forge
[14:08:04] [main/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0.362s
[14:08:04] [main/TRACE] [um/um]: Sending event FMLConstructionEvent to mod um
[14:08:04] [main/TRACE] [FML/um]: Mod um is using network checker : Accepting version 1.0
[14:08:04] [main/TRACE] [FML/um]: Testing mod um to verify it accepts its own version in a remote connection
[14:08:04] [main/TRACE] [FML/um]: The mod um accepts its own version (1.0)
[14:08:04] [main/DEBUG] [FML/um]: Attempting to inject @SidedProxy classes into um
[14:08:04] [main/DEBUG] [FML/um]: Attempting to inject @EventBusSubscriber classes into the eventbus for um
[14:08:04] [main/DEBUG] [FML/um]: Registering @EventBusSubscriber for com.mta.utzonmod.proxy.ClientProxy for mod um
[14:08:04] [main/DEBUG] [FML/um]: Injected @EventBusSubscriber class com.mta.utzonmod.proxy.ClientProxy
[14:08:04] [main/DEBUG] [FML/um]: Registering @EventBusSubscriber for com.mta.utzonmod.util.handlers.RegistryHandler for mod um
[14:08:04] [main/DEBUG] [FML/um]: Injected @EventBusSubscriber class com.mta.utzonmod.util.handlers.RegistryHandler
[14:08:04] [main/DEBUG] [FML/um]: Registering @EventBusSubscriber for com.mta.utzonmod.proxy.CommonProxy for mod um
[14:08:04] [main/DEBUG] [FML/um]: Injected @EventBusSubscriber class com.mta.utzonmod.proxy.CommonProxy
[14:08:04] [main/DEBUG] [FML/um]: Attempting to inject @Config classes into um for type INSTANCE
[14:08:04] [main/TRACE] [um/um]: Sent event FMLConstructionEvent to mod um
[14:08:04] [main/DEBUG] [FML/]: Bar Step: Construction - Utzon Mod took 0.053s
[14:08:04] [main/DEBUG] [FML/]: Bar Finished: Construction took 2.363s
[14:08:04] [main/DEBUG] [FML/]: Mod signature data
[14:08:04] [main/DEBUG] [FML/]:  	Valid Signatures:
[14:08:04] [main/DEBUG] [FML/]:  	Missing Signatures:
[14:08:04] [main/DEBUG] [FML/]: 		minecraft	(Minecraft	1.12.2)	minecraft.jar
[14:08:04] [main/DEBUG] [FML/]: 		mcp	(Minecraft Coder Pack	9.42)	minecraft.jar
[14:08:04] [main/DEBUG] [FML/]: 		FML	(Forge Mod Loader	8.0.99.99)	forgeSrc-1.12.2-14.23.2.2624.jar
[14:08:04] [main/DEBUG] [FML/]: 		forge	(Minecraft Forge	14.23.2.2624)	forgeSrc-1.12.2-14.23.2.2624.jar
[14:08:04] [main/DEBUG] [FML/]: 		um	(Utzon Mod	1.0)	bin
[14:08:04] [main/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.020s
[14:08:04] [main/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.076s
[14:08:04] [main/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.039s
[14:08:04] [main/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Utzon Mod took 0.007s
[14:08:04] [main/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0.067s
[14:08:04] [main/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0.070s
[14:08:04] [main/DEBUG] [FML/]: Bar Finished: Loading Resources took 0.212s
[14:08:04] [main/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[14:08:04] [main/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[14:08:04] [main/INFO] [FML/]: Processing ObjectHolder annotations
[14:08:05] [main/INFO] [FML/]: Found 1168 ObjectHolder annotations
[14:08:05] [main/INFO] [FML/]: Identifying ItemStackHolder annotations
[14:08:05] [main/INFO] [FML/]: Found 0 ItemStackHolder annotations
[14:08:05] [main/TRACE] [minecraft/minecraft]: Sending event FMLPreInitializationEvent to mod minecraft
[14:08:05] [main/TRACE] [minecraft/minecraft]: Sent event FMLPreInitializationEvent to mod minecraft
[14:08:05] [main/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft took 0.001s
[14:08:05] [main/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp
[14:08:05] [main/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp
[14:08:05] [main/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.001s
[14:08:05] [main/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML
[14:08:05] [main/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML
[14:08:05] [main/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0.001s
[14:08:05] [main/TRACE] [forge/forge]: Sending event FMLPreInitializationEvent to mod forge
[14:08:05] [main/INFO] [FML/forge]: Configured a dormant chunk cache size of 0
[14:08:05] [main/TRACE] [forge/forge]: Sent event FMLPreInitializationEvent to mod forge
[14:08:05] [main/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0.230s
[14:08:05] [main/TRACE] [um/um]: Sending event FMLPreInitializationEvent to mod um
[14:08:05] [main/TRACE] [um/um]: Sent event FMLPreInitializationEvent to mod um
[14:08:05] [main/DEBUG] [FML/]: Bar Step: PreInitialization - Utzon Mod took 0.011s
[14:08:05] [main/DEBUG] [FML/]: Bar Finished: PreInitialization took 0.244s
[14:08:05] [main/INFO] [FML/]: Applying holder lookups
[14:08:05] [main/INFO] [FML/]: Holder lookups applied
[14:08:05] [main/WARN] [FML/]: ****************************************
[14:08:05] [main/WARN] [FML/]: * Registry Item: The object com.mta.utzonmod.items.ItemPaste@1bee8888 has been registered twice for the same name um:paste.
[14:08:05] [main/WARN] [FML/]: *  at net.minecraftforge.registries.ForgeRegistry.add(ForgeRegistry.java:300)
[14:08:05] [main/WARN] [FML/]: *  at net.minecraftforge.registries.ForgeRegistry.add(ForgeRegistry.java:281)
[14:08:05] [main/WARN] [FML/]: *  at net.minecraftforge.registries.ForgeRegistry.register(ForgeRegistry.java:114)
[14:08:05] [main/WARN] [FML/]: *  at net.minecraftforge.registries.ForgeRegistry.registerAll(ForgeRegistry.java:155)
[14:08:05] [main/WARN] [FML/]: *  at com.mta.utzonmod.proxy.CommonProxy.registerItems(CommonProxy.java:15)
[14:08:05] [main/WARN] [FML/]: *  at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_CommonProxy_registerItems_Register.invoke(.dynamic)...
[14:08:05] [main/WARN] [FML/]: ****************************************
[14:08:05] [main/INFO] [FML/]: Applying holder lookups
[14:08:05] [main/INFO] [FML/]: Holder lookups applied
[14:08:05] [main/INFO] [FML/]: Applying holder lookups
[14:08:05] [main/INFO] [FML/]: Holder lookups applied
[14:08:05] [main/INFO] [FML/]: Applying holder lookups
[14:08:05] [main/INFO] [FML/]: Holder lookups applied
[14:08:05] [main/INFO] [FML/]: Injecting itemstacks
[14:08:05] [main/INFO] [FML/]: Itemstack injection complete
[14:08:05] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0.000s
[14:08:09] [main/DEBUG] [FML/]: Bar Finished: Loading sounds took 3.960s
[14:08:09] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 3.993s
[14:08:09] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.004s
[14:08:09] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.003s
[14:08:09] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.017s
[14:08:09] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.022s
[14:08:09] [main/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0.003s
[14:08:09] [main/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0.011s
[14:08:09] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - B3DLoader took 0.000s
[14:08:09] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - OBJLoader took 0.000s
[14:08:09] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelFluid$FluidLoader took 0.000s
[14:08:09] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - ItemLayerModel$Loader took 0.000s
[14:08:09] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - MultiLayerModel$Loader took 0.000s
[14:08:09] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelDynBucket$LoaderDynBucket took 0.000s
[14:08:14] [main/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 4.809s
[14:08:16] [main/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 1.322s
[14:08:16] [main/INFO] [FML/]: Max texture size: 8192
[14:08:16] [main/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.571s
[14:08:16] [main/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.049s
[14:08:16] [main/DEBUG] [FML/]: Bar Finished: Texture creation took 0.058s
[14:08:16] [main/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload took 0.060s
[14:08:18] [main/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 1.463s
[14:08:18] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 8.739s
[14:08:18] [main/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 8.804s
[14:08:19] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0.004s
[14:08:19] [main/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 0.420s
[14:08:19] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0.000s
[14:08:19] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s
[14:08:19] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0.000s
[14:08:19] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - SearchTreeManager took 0.202s
[14:08:19] [main/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.701s
[14:08:19] [main/DEBUG] [FML/]: Bar Finished: Rendering Setup took 9.939s
[14:08:19] [main/INFO] [FML/]: Applying holder lookups
[14:08:19] [main/INFO] [FML/]: Holder lookups applied
[14:08:19] [main/TRACE] [minecraft/minecraft]: Sending event FMLInitializationEvent to mod minecraft
[14:08:19] [main/TRACE] [minecraft/minecraft]: Sent event FMLInitializationEvent to mod minecraft
[14:08:19] [main/DEBUG] [FML/]: Bar Step: Initialization - Minecraft took 0.001s
[14:08:19] [main/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp
[14:08:19] [main/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp
[14:08:19] [main/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0.001s
[14:08:19] [main/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML
[14:08:19] [main/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML
[14:08:19] [main/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0.003s
[14:08:19] [main/TRACE] [forge/forge]: Sending event FMLInitializationEvent to mod forge
[14:08:19] [main/TRACE] [forge/forge]: Sent event FMLInitializationEvent to mod forge
[14:08:19] [main/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0.000s
[14:08:19] [main/TRACE] [um/um]: Sending event FMLInitializationEvent to mod um
[14:08:19] [main/TRACE] [um/um]: Sent event FMLInitializationEvent to mod um
[14:08:19] [main/DEBUG] [FML/]: Bar Step: Initialization - Utzon Mod took 0.002s
[14:08:19] [main/DEBUG] [FML/]: Bar Finished: Initialization took 0.007s
[14:08:19] [main/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod minecraft
[14:08:19] [main/TRACE] [minecraft/minecraft]: Sending event IMCEvent to mod minecraft
[14:08:19] [main/TRACE] [minecraft/minecraft]: Sent event IMCEvent to mod minecraft
[14:08:19] [main/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft took 0.010s
[14:08:19] [main/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp
[14:08:19] [main/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp
[14:08:19] [main/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp
[14:08:19] [main/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.000s
[14:08:19] [main/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML
[14:08:19] [main/TRACE] [FML/FML]: Sending event IMCEvent to mod FML
[14:08:19] [main/TRACE] [FML/FML]: Sent event IMCEvent to mod FML
[14:08:19] [main/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.001s
[14:08:19] [main/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod forge
[14:08:19] [main/TRACE] [forge/forge]: Sending event IMCEvent to mod forge
[14:08:19] [main/TRACE] [forge/forge]: Sent event IMCEvent to mod forge
[14:08:19] [main/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.000s
[14:08:19] [main/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod um
[14:08:19] [main/TRACE] [um/um]: Sending event IMCEvent to mod um
[14:08:19] [main/TRACE] [um/um]: Sent event IMCEvent to mod um
[14:08:19] [main/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Utzon Mod took 0.000s
[14:08:19] [main/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0.013s
[14:08:19] [main/INFO] [FML/]: Injecting itemstacks
[14:08:19] [main/INFO] [FML/]: Itemstack injection complete
[14:08:19] [main/TRACE] [minecraft/minecraft]: Sending event FMLPostInitializationEvent to mod minecraft
[14:08:19] [main/TRACE] [minecraft/minecraft]: Sent event FMLPostInitializationEvent to mod minecraft
[14:08:19] [main/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft took 0.000s
[14:08:19] [main/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp
[14:08:19] [main/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp
[14:08:19] [main/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.001s
[14:08:19] [main/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML
[14:08:19] [main/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML
[14:08:19] [main/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0.001s
[14:08:19] [main/TRACE] [forge/forge]: Sending event FMLPostInitializationEvent to mod forge
[14:08:19] [main/TRACE] [forge/forge]: Sent event FMLPostInitializationEvent to mod forge
[14:08:19] [main/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0.056s
[14:08:19] [main/TRACE] [um/um]: Sending event FMLPostInitializationEvent to mod um
[14:08:19] [main/TRACE] [um/um]: Sent event FMLPostInitializationEvent to mod um
[14:08:19] [main/DEBUG] [FML/]: Bar Step: PostInitialization - Utzon Mod took 0.001s
[14:08:19] [main/DEBUG] [FML/]: Bar Finished: PostInitialization took 0.059s
[14:08:19] [main/TRACE] [minecraft/minecraft]: Sending event FMLLoadCompleteEvent to mod minecraft
[14:08:19] [main/TRACE] [minecraft/minecraft]: Sent event FMLLoadCompleteEvent to mod minecraft
[14:08:19] [main/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft took 0.018s
[14:08:19] [main/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp
[14:08:19] [main/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp
[14:08:19] [main/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.001s
[14:08:19] [main/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML
[14:08:19] [main/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML
[14:08:19] [main/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0.001s
[14:08:19] [main/TRACE] [forge/forge]: Sending event FMLLoadCompleteEvent to mod forge
[14:08:19] [main/DEBUG] [FML/forge]: Forge RecipeSorter Baking:
[14:08:19] [main/DEBUG] [FML/forge]:   16: RecipeEntry("Before", UNKNOWN, )
[14:08:19] [main/DEBUG] [FML/forge]:   15: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless
[14:08:19] [main/DEBUG] [FML/forge]:   14: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped
[14:08:19] [main/DEBUG] [FML/forge]:   13: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped
[14:08:19] [main/DEBUG] [FML/forge]:   12: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped
[14:08:19] [main/DEBUG] [FML/forge]:   11: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless
[14:08:19] [main/DEBUG] [FML/forge]:   10: RecipeEntry("minecraft:shield_deco", SHAPELESS, net.minecraft.item.crafting.ShieldRecipes$Decoration) After: minecraft:shapeless
[14:08:19] [main/DEBUG] [FML/forge]:   9: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless
[14:08:19] [main/DEBUG] [FML/forge]:   8: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless
[14:08:19] [main/DEBUG] [FML/forge]:   7: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless
[14:08:19] [main/DEBUG] [FML/forge]:   6: RecipeEntry("minecraft:tippedarrow", SHAPELESS, net.minecraft.item.crafting.RecipeTippedArrow) After: minecraft:shapeless
[14:08:19] [main/DEBUG] [FML/forge]:   5: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless
[14:08:19] [main/DEBUG] [FML/forge]:   4: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless
[14:08:19] [main/DEBUG] [FML/forge]:   3: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless
[14:08:19] [main/DEBUG] [FML/forge]:   2: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless
[14:08:19] [main/DEBUG] [FML/forge]:   1: RecipeEntry("After", UNKNOWN, )
[14:08:20] [main/DEBUG] [FML/forge]: Sorting recipes
[14:08:20] [main/TRACE] [forge/forge]: Sent event FMLLoadCompleteEvent to mod forge
[14:08:20] [main/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0.018s
[14:08:20] [main/TRACE] [um/um]: Sending event FMLLoadCompleteEvent to mod um
[14:08:20] [main/TRACE] [um/um]: Sent event FMLLoadCompleteEvent to mod um
[14:08:20] [main/DEBUG] [FML/]: Bar Step: LoadComplete - Utzon Mod took 0.000s
[14:08:20] [main/DEBUG] [FML/]: Bar Finished: LoadComplete took 0.039s
[14:08:20] [main/DEBUG] [FML/]: Freezing registries
[14:08:20] [main/TRACE] [minecraft/minecraft]: Sending event FMLModIdMappingEvent to mod minecraft
[14:08:20] [main/TRACE] [minecraft/minecraft]: Sent event FMLModIdMappingEvent to mod minecraft
[14:08:20] [main/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft took 0.001s
[14:08:20] [main/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
[14:08:20] [main/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
[14:08:20] [main/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.001s
[14:08:20] [main/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
[14:08:20] [main/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
[14:08:20] [main/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.001s
[14:08:20] [main/TRACE] [forge/forge]: Sending event FMLModIdMappingEvent to mod forge
[14:08:20] [main/TRACE] [forge/forge]: Sent event FMLModIdMappingEvent to mod forge
[14:08:20] [main/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.370s
[14:08:20] [main/TRACE] [um/um]: Sending event FMLModIdMappingEvent to mod um
[14:08:20] [main/TRACE] [um/um]: Sent event FMLModIdMappingEvent to mod um
[14:08:20] [main/DEBUG] [FML/]: Bar Step: ModIdMapping - Utzon Mod took 0.001s
[14:08:20] [main/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.372s
[14:08:20] [main/DEBUG] [FML/]: All registries frozen
[14:08:20] [main/INFO] [FML/]: Forge Mod Loader has successfully loaded 5 mods
[14:08:20] [main/DEBUG] [FML/]: Bar Finished: Loading took 22.163s
[14:08:20] [main/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[14:08:20] [main/ERROR] [TEXTURE ERRORS/]: The following texture errors were found.
[14:08:20] [main/ERROR] [TEXTURE ERRORS/]: ==================================================
[14:08:20] [main/ERROR] [TEXTURE ERRORS/]:   DOMAIN um
[14:08:20] [main/ERROR] [TEXTURE ERRORS/]: --------------------------------------------------
[14:08:20] [main/ERROR] [TEXTURE ERRORS/]:   domain um is missing 1 texture
[14:08:20] [main/ERROR] [TEXTURE ERRORS/]:     domain um has 1 location:
[14:08:20] [main/ERROR] [TEXTURE ERRORS/]:       mod um resources at C:\Users\Frederik\Desktop\WorkspaceUno\Mod\bin
[14:08:20] [main/ERROR] [TEXTURE ERRORS/]: -------------------------
[14:08:20] [main/ERROR] [TEXTURE ERRORS/]:     The missing resources for domain um are:
[14:08:20] [main/ERROR] [TEXTURE ERRORS/]:       textures/items/paste.png
[14:08:20] [main/ERROR] [TEXTURE ERRORS/]: -------------------------
[14:08:20] [main/ERROR] [TEXTURE ERRORS/]:     No other errors exist for domain um
[14:08:20] [main/ERROR] [TEXTURE ERRORS/]: ==================================================
[14:08:20] [main/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[14:08:21] [main/DEBUG] [FML/]: Bar Finished: Loading Resource - CloudRenderer took 0.011s
[14:09:04] [main/DEBUG] [FML/]: Overriding dimension: using 0

 

Link to comment
Share on other sites

Have you tried adding some logging to see what methods are getting called?

I cant see anything wrong with your code, but I'm pretty tired and could easily have missed something

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

4 minutes ago, Cadiboo said:

Have you tried adding some logging to see what methods are getting called?

I cant see anything wrong with your code, but I'm pretty tired and could easily have missed something

Yea same, I'll give it a rest for the day and return with some fresh eyes tomorrow, maybe trying some logging. Thanks for your help, now I at least got some new information =)

Link to comment
Share on other sites

4 hours ago, Cadiboo said:

 

2) No idea what it would try to do with (new Item[0]), but it would fail absolutely horribly and fatally.

https://docs.oracle.com/javase/7/docs/api/java/util/List.html

 

Quote

 

toArray


<T> T[] toArray(T[] a)
Returns an array containing all of the elements in this list in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array. If the list fits in the specified array, it is returned therein. Otherwise, a new array is allocated with the runtime type of the specified array and the size of this list.

 

toArray(new Item[0]) is fine. It's...not great, but it won't fail.

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.

Link to comment
Share on other sites

3 hours ago, Cadiboo said:

No, Registration has to be done on both client and server therefore it is in CommonProxy

No modder, bad cookie. It should be done in the main mod class.

The concept of a "common proxy" does not make sense. The whole point of @SidedProxy is to abstract over client specific and server specific behavior, the opposite of "common". Common code should go in your main mod class.

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.

Link to comment
Share on other sites

3 hours ago, Draco18s said:

https://docs.oracle.com/javase/7/docs/api/java/util/List.html

 

toArray(new Item[0]) is fine. It's...not great, but it won't fail.

I believe that their error said that it was failing.

Sorry for saying how badly it would fail, I've never seen anything like that before and from my experience it should fail catastrophically

Edited by Cadiboo

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

14 minutes ago, diesieben07 said:

This apparent "ancient wisdom" of "Oh, it's going to create an unnecessary empty array" is not true.

Well, it might be true under some circumstances. What it comes down to is that performance (especially with a heavily optimizing VM) is not an easy thing to talk about.

My point was it won't crash. Whether or not it's a good idea or bad idea to create an empty array (vs. using the zero parameter version vs. creating the array yourself) I don't know what's best.

All I was countering was the comment that "oh, there's your problem, you're creating an empty array!" No, no that is not your problem.

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.

Link to comment
Share on other sites

My Apologies, I thought they were creating a new Item and instead of using () were using [0], I didn't know that you could create an array this way with such a small amount code,

 

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

19 hours ago, diesieben07 said:

I know. I was commenting on "It's not great".

Fair enough. I was hesitant in my assessment as I had to scratch my head over what the possible pros and cons were.

I suppose, "It's....not? great?" might've better expressed that.

*Shrug*

Thanks for the reading material, though.

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.

Link to comment
Share on other sites

Alright guys, I'm gonna try and bump this thread, as I am still unable to find a solve. I know you guys have a lot of preferences on how to do things properly, but I've returned to the tutorial, as that seemed to work for the guy in the tutorial. So instead of me trying to build something based on your guys' preferences I can focus on what I did wrong doing it this way. 

 

Error:

[10:34:03] [main/WARN]: Skipping bad option: lastServer:
[10:34:03] [main/INFO]: Narrator library for x64 successfully loaded
[10:34:03] [main/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[10:34:03] [main/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
[10:34:03] [main/ERROR] [TEXTURE ERRORS]: ==================================================
[10:34:03] [main/ERROR] [TEXTURE ERRORS]:   DOMAIN um
[10:34:03] [main/ERROR] [TEXTURE ERRORS]: --------------------------------------------------
[10:34:03] [main/ERROR] [TEXTURE ERRORS]:   domain um is missing 1 texture
[10:34:03] [main/ERROR] [TEXTURE ERRORS]:     domain um has 1 location:
[10:34:03] [main/ERROR] [TEXTURE ERRORS]:       mod um resources at C:\Users\Frederik\Desktop\WorkspaceUno\Mod\bin
[10:34:03] [main/ERROR] [TEXTURE ERRORS]: -------------------------
[10:34:03] [main/ERROR] [TEXTURE ERRORS]:     The missing resources for domain um are:
[10:34:03] [main/ERROR] [TEXTURE ERRORS]:       textures/items/schematic_sign.png
[10:34:03] [main/ERROR] [TEXTURE ERRORS]: -------------------------
[10:34:03] [main/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain um
[10:34:03] [main/ERROR] [TEXTURE ERRORS]: ==================================================
[10:34:03] [main/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=

 

Project structure:

a2LwhkA.png

 

ModItems.java:

package com.mta.utzonmod.init;

import java.util.ArrayList;
import java.util.List;

import com.mta.utzonmod.items.ItemBase;

import net.minecraft.item.Item;

public class ModItems {
  public static final List<Item> ITEMS = new ArrayList<Item>();
  
  public static final Item SCHEMATIC_SIGN = new ItemBase("schematic_sign");
  
}

 

ItemBase.java:

package com.mta.utzonmod.items;

import com.mta.utzonmod.Main;
import com.mta.utzonmod.init.ModItems;
import com.mta.utzonmod.util.IHasModel;

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

public class ItemBase extends Item implements IHasModel{

	public ItemBase(String name) {
		setUnlocalizedName(name);
		setRegistryName(name);
		setCreativeTab(CreativeTabs.MISC);
		
		ModItems.ITEMS.add(this);
	}
	
	@Override
	public void registerModels() {

		Main.proxy.registerItemRenderer(this, 0, "inventory");
		
	}
}

 

ClientProxy.java:

package com.mta.utzonmod.proxy;

import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.item.Item;
import net.minecraftforge.client.model.ModelLoader;


public class ClientProxy extends CommonProxy {
	public void registerItemRenderer(Item item, int meta, String id) {
		ModelLoader.setCustomModelResourceLocation(item, meta, new ModelResourceLocation(item.getRegistryName(), id));
	}
}

 

CommonProxy.java:

package com.mta.utzonmod.proxy;

import net.minecraft.item.Item;

public class CommonProxy {

	public void registerItemRenderer(Item item, int meta, String id) {
		
	}
}

 

RegistryHandler.java:

package com.mta.utzonmod.util.handlers;

import com.mta.utzonmod.init.ModItems;
import com.mta.utzonmod.util.IHasModel;

import net.minecraft.item.Item;
import net.minecraftforge.client.event.ModelRegistryEvent;
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.fml.common.Mod.EventBusSubscriber;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

@EventBusSubscriber
public class RegistryHandler {
	@SubscribeEvent
	public static void onItemRegister(RegistryEvent.Register<Item> event) {
		event.getRegistry().registerAll(ModItems.ITEMS.toArray(new Item[0]));
	}
	
	@SubscribeEvent
	public static void onModelRegister(ModelRegistryEvent event) {
		for(Item item : ModItems.ITEMS) {
			if(item instanceof IHasModel) {
				((IHasModel)item).registerModels();
			}
		}
	}
}

 

IHasModel.java:

package com.mta.utzonmod.util;

public interface IHasModel {
	public void registerModels();
}

 

Reference.java:

package com.mta.utzonmod.util;

public class Reference {
	
	public static final String MOD_ID = "um";
	public static final String NAME = "Utzon Mod";
	public static final String VERSION = "1.0";
	public static final String ACCEPTED_VERSIONS = "[1.12.2]";
	public static final String CLIENT_PROXY_CLASS = "com.mta.utzonmod.proxy.ClientProxy";
	public static final String COMMON_PROXY_CLASS = "com.mta.utzonmod.proxy.CommonProxy";
	
}

 

Main.java:

package com.mta.utzonmod;

import com.mta.utzonmod.proxy.CommonProxy;
import com.mta.utzonmod.util.Reference;

import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.Mod.Instance;
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.MOD_ID, name = Reference.NAME, version = Reference.VERSION)
public class Main {

	@Instance
	public static Main instance;
	
	@SidedProxy(clientSide = Reference.CLIENT_PROXY_CLASS, serverSide = Reference.COMMON_PROXY_CLASS)
	public static CommonProxy proxy;
	
	@EventHandler
	public static void PreInit(FMLPreInitializationEvent event)
	{
		
	}
	@EventHandler
	public static void init(FMLInitializationEvent event)
	{
		
	}
	@EventHandler
	public static void PostInit(FMLPostInitializationEvent event)
	{
		
	}
	
}

 

en_us.lang:

item.schematic_sign.name=Schematic Input
item.paste.name=Paste

 

schematic_sign.json:

{
   "parent": "item/generated",
   "textures": {
       "layer0": "um:items/schematic_sign"
   }
}

 

Sorry for the huge amount of code, but at this point it just feel like I missed something trivial, so hopefully one of you can help me locate it. I also checked if my image files were properly located, labeled and exported, which all seemed to check out.

 

Link to comment
Share on other sites

I don't think that you need IHasModel at all

 

Sorry for not coming back to your topic, I accidentally deleted about 80% of my mods code and had to focus on getting it back

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

@Stenbergcsgo

change 

@SubscribeEvent
	public static void onModelRegister(ModelRegistryEvent event) {
		for(Item item : ModItems.ITEMS) {
			if(item instanceof IHasModel) {
				((IHasModel)item).registerModels();
			}
		}
	}

 

to

 

@SubscribeEvent
    public static void registerModels(ModelRegistryEvent event)
    {
       for (Item item: ModItems.ITEMS)
        {
            ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory"));
        }
   }

 

Edited by Cadiboo

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

26 minutes ago, Cadiboo said:

@Stenbergcsgo

change 


@SubscribeEvent
	public static void onModelRegister(ModelRegistryEvent event) {
		for(Item item : ModItems.ITEMS) {
			if(item instanceof IHasModel) {
				((IHasModel)item).registerModels();
			}
		}
	}

 

to

 


@SubscribeEvent
    public static void registerModels(ModelRegistryEvent event)
    {
       for (Item item: ModItems.ITEMS)
        {
            ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory"));
        }
   }

 

Tried, but same result

Link to comment
Share on other sites

change 

@EventBusSubscriber

to

@Mod.EventBusSubscriber
Edited by Cadiboo

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

ItemBase.java

Spoiler

package com.mta.utzonmod.items;

import com.mta.utzonmod.util.Reference;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;

public class ItemBase extends Item {

    public ItemBase(String name)
    {
        super();
        this.setRegistryName(Reference.ID, name);
        this.setUnlocalizedName(name);
    }
}

 

ItemSchematicSign.java

Spoiler

package com.mta.utzonmod.items;

public class ItemSchematicSign extends ItemBase
{
    public ItemSchematicSign(String name)
    {
        super(name);
    }
}


ModItems.java

Spoiler

package com.mta.utzonmod.init;

import com.mta.utzonmod.items.ItemSchematicSign;

public class ModItems
{
  public static final ItemSchematicSign SCHEMATIC_SIGN = new ItemSchematicSign("schematic_sign");

  public static final Item[] ITEMS = {
    SCHEMATIC_SIGN,
  };
}

 

Main.java

Spoiler

//package & imports here

@Mod(modid = Reference.MOD_ID, name = Reference.NAME, version = Reference.VERSION)
public class Main {

    @Instance(Reference.MOD_ID)
    public static Main instance;

    @SidedProxy(serverSide = Reference.PROXY_CLASS, clientSide = Reference.CLIENT_PROXY_CLASS)
    public static ModRegistry proxy;

    @EventHandler
    public void preInit(FMLPreInitializationEvent event)
    {
        proxy.addToCreativeTab();
    }
//other eventhandlers
}

 

ModRegistry.java

Spoiler

package com.mta.utzonmod.proxy;

import com.mta.utzonmod.init.ModItems;

import net.minecraft.item.Item;

import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

@Mod.EventBusSubscriber
public class ModRegistry {

    @SubscribeEvent
    public static void registerItems(RegistryEvent.Register<Item> event)
    {
        event.getRegistry().registerAll(ModItems.ITEMS);
    }

    public void addToCreativeTab() {}

}


ClientModRegistry.java
 

Spoiler

package com.mta.utzonmod.proxy;

import com.mta.utzonmod.init.ModItems;

import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.item.Item;
import net.minecraftforge.client.event.ModelRegistryEvent;
import net.minecraftforge.client.model.ModelLoader;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

@Mod.EventBusSubscriber
public class ClientModRegistry extends ModRegistry {
    @SubscribeEvent
    public static void registerModels(ModelRegistryEvent event)
    {
        for (Item item: ModItems.ITEMS)
        {
            ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory"));
        }
    }

    public static CreativeTabs modTab = new CreativeTabs("YOUR_TAB_NAME")
    {
        @Override
        public ItemStack getTabIconItem()
        {
            return new ItemStack(Blocks.COPPER_ORE);
        }
    }

    public void addToCreativeTab()
    {
        for(Item item : Items.ITEMS) {
            item.setCreativeTab(modTab);
        }
    }

}

 

Reference.java

Spoiler

package com.mta.utzonmod.util;

public class Reference {
	
	public static final String MOD_ID = "um";
	public static final String NAME = "Utzon Mod";
	public static final String VERSION = "1.0";
	public static final String ACCEPTED_VERSIONS = "[1.12.2]";
	public static final String CLIENT_PROXY_CLASS = "com.mta.utzonmod.proxy.ClientModRegistry";
	public static final String COMMON_PROXY_CLASS = "com.mta.utzonmod.proxy.CommonProxyModRegistry";
	
}

 

 

Edited by Cadiboo

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

9 minutes ago, Cadiboo said:

ItemBase.java

  Reveal hidden contents


package com.mta.utzonmod.items;

import com.mta.utzonmod.util.Reference;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;

public class ItemBase extends Item {

    public ItemBase(String name)
    {
        super();
        this.setRegistryName(Reference.ID, name);
        this.setUnlocalizedName(name);
    }
}

 

ItemSchematicSign.java

  Reveal hidden contents


package com.mta.utzonmod.items;

public class ItemSchematicSign extends ItemBase
{
    public ItemSchematicSign(String name)
    {
        super(name);
    }
}


ModItems.java

  Reveal hidden contents


package com.mta.utzonmod.init;

import com.mta.utzonmod.items.ItemSchematicSign;

public class ModItems
{
  public static final ItemSchematicSign SCHEMATIC_SIGN = new ItemSchematicSign("schematic_sign");

  public static final Item[] ITEMS = {
    SCHEMATIC_SIGN,
  };
}

 

Main.java

  Reveal hidden contents


//package & imports here

@Mod(modid = Reference.MOD_ID, name = Reference.NAME, version = Reference.VERSION)
public class Main {

    @Instance(Reference.MOD_ID)
    public static Main instance;

    @SidedProxy(serverSide = Reference.PROXY_CLASS, clientSide = Reference.CLIENT_PROXY_CLASS)
    public static ModRegistry proxy;

    @EventHandler
    public void preInit(FMLPreInitializationEvent event)
    {
        proxy.addToCreativeTab();
    }
//other eventhandlers
}

 

ModRegistry.java

  Reveal hidden contents


package com.mta.utzonmod.proxy;

import com.mta.utzonmod.init.ModItems;

import net.minecraft.item.Item;

import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

@Mod.EventBusSubscriber
public class ModRegistry {

    @SubscribeEvent
    public static void registerItems(RegistryEvent.Register<Item> event)
    {
        event.getRegistry().registerAll(ModItems.ITEMS);
    }

    public void addToCreativeTab() {}

}


ClientModRegistry.java
 

  Reveal hidden contents


package com.mta.utzonmod.proxy;

import com.mta.utzonmod.init.ModItems;

import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.item.Item;
import net.minecraftforge.client.event.ModelRegistryEvent;
import net.minecraftforge.client.model.ModelLoader;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

@Mod.EventBusSubscriber
public class ClientModRegistry extends ModRegistry {
    @SubscribeEvent
    public static void registerModels(ModelRegistryEvent event)
    {
        for (Item item: ModItems.ITEMS)
        {
            ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory"));
        }
    }

    public static CreativeTabs modTab = new CreativeTabs("YOUR_TAB_NAME")
    {
        @Override
        public ItemStack getTabIconItem()
        {
            return new ItemStack(Blocks.COPPER_ORE);
        }
    }

    public void addToCreativeTab()
    {
        for(Item item : Items.ITEMS) {
            item.setCreativeTab(modTab);
        }
    }

}

 

Reference.java

  Reveal hidden contents


package com.mta.utzonmod.util;

public class Reference {
	
	public static final String MOD_ID = "um";
	public static final String NAME = "Utzon Mod";
	public static final String VERSION = "1.0";
	public static final String ACCEPTED_VERSIONS = "[1.12.2]";
	public static final String CLIENT_PROXY_CLASS = "com.mta.utzonmod.proxy.ClientModRegistry";
	public static final String COMMON_PROXY_CLASS = "com.mta.utzonmod.proxy.CommonProxyModRegistry";
	
}

 

 

Tried setting up with your code, got some import, syntax and naming errors. Fixed those, but still get the exact same error. I'll return tomorrow, but I have to go for now. Appreciate the help though, this issue is really starting to bug me. :-)

Link to comment
Share on other sites

13 minutes ago, Stenbergcsgo said:

this issue is really starting to bug me. :-)

Me too, I can see nothing wrong with any of your code.

Edited by Cadiboo

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

You might want to have a look at how other people have set up their mods,

My mod:

https://github.com/Cadiboo/WIPTech/tree/master/src/main/java/cadiboo/wiptech

Choonster's Mod:

https://github.com/Choonster-Minecraft-Mods/TestMod3

TinkersConstruct (their codes does the job well, but its a bit hard to read and understand sometimes)

https://github.com/SlimeKnights/TinkersConstruct/

The Grey Ghost - Minecraft By Example (Oriented around teaching the basics)

https://github.com/TheGreyGhost/MinecraftByExample

Shadow Facts' Tutorials (VERY useful, if sometimes a bit outdated, disjointed and incomplete)

https://shadowfacts.net/tutorials/

Edited by Cadiboo

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

Also, the way I've set up my mod works perfectly for me, but it treats what should be a exclusively server-side code as (mostly) common code. If your planning on adding a lot methods that should only exist on the server you should set up your proxies that way

  • Like 1

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

Your folder name is ítems it should be items.

 

items.png

  • Thanks 1
  • Haha 1

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.

Link to comment
Share on other sites

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements




  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hi, I'm trying to use datagen to create json files in my own mod. This is my ModRecipeProvider class. public class ModRecipeProvider extends RecipeProvider implements IConditionBuilder { public ModRecipeProvider(PackOutput pOutput) { super(pOutput); } @Override protected void buildRecipes(Consumer<FinishedRecipe> pWriter) { ShapedRecipeBuilder.shaped(RecipeCategory.MISC, ModBlocks.COMPRESSED_DIAMOND_BLOCK.get()) .pattern("SSS") .pattern("SSS") .pattern("SSS") .define('S', ModItems.COMPRESSED_DIAMOND.get()) .unlockedBy(getHasName(ModItems.COMPRESSED_DIAMOND.get()), has(ModItems.COMPRESSED_DIAMOND.get())) .save(pWriter); ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, ModItems.COMPRESSED_DIAMOND.get(),9) .requires(ModBlocks.COMPRESSED_DIAMOND_BLOCK.get()) .unlockedBy(getHasName(ModBlocks.COMPRESSED_DIAMOND_BLOCK.get()), has(ModBlocks.COMPRESSED_DIAMOND_BLOCK.get())) .save(pWriter); ShapedRecipeBuilder.shaped(RecipeCategory.MISC, ModItems.COMPRESSED_DIAMOND.get()) .pattern("SSS") .pattern("SSS") .pattern("SSS") .define('S', Blocks.DIAMOND_BLOCK) .unlockedBy(getHasName(ModItems.COMPRESSED_DIAMOND.get()), has(ModItems.COMPRESSED_DIAMOND.get())) .save(pWriter); } } When I try to run the runData client, it shows an error:  Caused by: java.lang.IllegalStateException: Duplicate recipe compressed:compressed_diamond I know that it's caused by the fact that there are two recipes for the ModItems.COMPRESSED_DIAMOND. But I need both of these recipes, because I need a way to craft ModItems.COMPRESSED_DIAMOND_BLOCK and restore 9 diamond blocks from ModItems.COMPRESSED_DIAMOND. Is there a way to solve this?
    • what's wrong here? info: [2024-05-08T11:50:59Z DEBUG rust_launcher::downloader] Downloading https://game-launcher.feathermc.com/release/version_index.json to C:\Users\Dell\AppData\Roaming\.minecraft\version_index.json... info: [2024-05-08T11:50:59Z DEBUG rust_launcher::downloader] Download from https://game-launcher.feathermc.com/release/version_index.json to C:\Users\Dell\AppData\Roaming\.minecraft\version_index.json completed. info: [2024-05-08T11:51:04Z ERROR rust_launcher::start::drm] Error while getting NTP time: Próba połączenia nie powiodła się, ponieważ połączona strona nie odpowiedziała poprawnie po ustalonym okresie czasu lub utworzone połączenie nie powiodło się, ponieważ połączony host nie odpowiedział. (os error 10060) info: CONNECTING TO SERVER undefined info: [2024-05-08T11:51:04Z INFO  rust_launcher::start::bindings] server: None info: [2024-05-08T11:51:04Z INFO  rust_launcher::start] Loading version info: {"versionSize":221968648,"state":{"VersionLoading":true},"currentDownloadRate":0,"expectedTasks":6,"downloadSpeed":0,"downloaded":0} info: [2024-05-08T11:51:04Z INFO  rust_launcher::start] Finished loading version info: [2024-05-08T11:51:04Z INFO  rust_launcher::start] Finished moving mods info: [2024-05-08T11:51:04Z INFO  rust_launcher::start] Preparing assets [2024-05-08T11:51:04Z INFO  rust_launcher::start] Preparing JRE info: {"versionSize":221968648,"state":{"Downloading":["Assets","Mods","Jre","Libraries"]},"currentDownloadRate":0,"expectedTasks":6,"downloadSpeed":0,"downloaded":75483} info: [2024-05-08T11:51:04Z DEBUG rust_launcher::start] Finished preparing JRE [2024-05-08T11:51:04Z INFO  rust_launcher::start] Preparing libraries info: [2024-05-08T11:51:04Z INFO  rust_launcher::start] Preparing mods [2024-05-08T11:51:04Z INFO  rust_launcher::start] Finished preparing mods info: {"versionSize":221968648,"state":{"Downloading":["Assets","Mods","Libraries"]},"currentDownloadRate":0,"expectedTasks":6,"downloadSpeed":0,"downloaded":43223364} info: {"versionSize":221968648,"state":{"Downloading":["Assets","Libraries"]},"currentDownloadRate":0,"expectedTasks":6,"downloadSpeed":0,"downloaded":43223364} info: {"versionSize":221968648,"state":{"Downloading":["Assets","Libraries"]},"currentDownloadRate":0,"expectedTasks":6,"downloadSpeed":0,"downloaded":132324388} info: {"versionSize":221968648,"state":{"Downloading":["Assets","Libraries"]},"currentDownloadRate":0,"expectedTasks":6,"downloadSpeed":0,"downloaded":361246457} info: [2024-05-08T11:51:07Z INFO  rust_launcher::start] Finished preparing libraries info: {"versionSize":221968648,"state":{"Downloading":["Assets"]},"currentDownloadRate":0,"expectedTasks":6,"downloadSpeed":0,"downloaded":628395692} info: {"versionSize":221968648,"state":{"Downloading":["Assets"]},"currentDownloadRate":0,"expectedTasks":6,"downloadSpeed":0,"downloaded":653786583} info: {"versionSize":221968648,"state":{"Downloading":["Assets"]},"currentDownloadRate":0,"expectedTasks":6,"downloadSpeed":0,"downloaded":678407583} info: {"versionSize":221968648,"state":{"Downloading":["Assets"]},"currentDownloadRate":0,"expectedTasks":6,"downloadSpeed":0,"downloaded":703052935} info: [2024-05-08T11:51:10Z INFO  rust_launcher::start] Finished preparing assets [2024-05-08T11:51:10Z INFO  rust_launcher::start] Preparing registry info: {"versionSize":221968648,"state":{"Jvm":true},"currentDownloadRate":0,"expectedTasks":6,"downloadSpeed":0,"downloaded":800814091} info: [2024-05-08T11:51:10Z INFO  rust_launcher::start] Finished preparing registry info: [2024-05-08T11:51:10Z INFO  rust_launcher::common::launch] starting JVM with arguments: ["-Djava.library.path=libraries/native\\net/digitalingot/fcef-windows/0.0.9\\extracted/;libraries/native\\net/digitalingot/fwebp-windows/0.0.2\\extracted/;libraries/native\\net/digitalingot/favif-windows/0.0.1\\extracted/;libraries/native\\com/discord/discord-game-sdk/3.2.1\\extracted/;libraries/native\\net/digitalingot/fdiscord/0.0.1\\extracted/;libraries/native\\net/digitalingot/fjni/0.0.1\\extracted/;libraries/native\\org/jitsi/jnopus/1.0\\extracted/;libraries/native\\org/lwjgl/lwjgl/3.3.1\\extracted/;libraries/native\\org/lwjgl/lwjgl-jemalloc/3.3.1\\extracted/;libraries/native\\org/lwjgl/lwjgl-openal/3.3.1\\extracted/;libraries/native\\org/lwjgl/lwjgl-opengl/3.3.1\\extracted/;libraries/native\\org/lwjgl/lwjgl-glfw/3.3.1\\extracted/;libraries/native\\org/lwjgl/lwjgl-stb/3.3.1\\extracted/;libraries/native\\org/lwjgl/lwjgl-tinyfd/3.3.1\\extracted/;libraries/native\\com/mojang/text2speech/1.13.9\\extracted/", "--add-opens=java.desktop/java.awt.event=ALL-UNNAMED", "--add-opens=java.desktop/java.awt.color=ALL-UNNAMED", "--add-opens=java.desktop/java.awt=ALL-UNNAMED", "--add-opens=java.base/java.lang=ALL-UNNAMED", "-Xmx4474M", "-XX:+UnlockExperimentalVMOptions", "-XX:+UseG1GC", "-XX:G1NewSizePercent=20", "-XX:G1ReservePercent=20", "-XX:MaxGCPauseMillis=50", "-XX:G1HeapRegionSize=32M", "-Dlog4j2.formatMsgNoLookups=true", "-XX:ErrorFile=feather/java_error.log", "-Djavax.accessibility.assistive_technologies=", "-Djavax.net.ssl.trustStoreType=WINDOWS-ROOT", "-cp", "libraries\\java\\net/minecraft/client/1.19.2/minecraft-1.19.2.jar;libraries\\java\\net/fabricmc/sponge-mixin/0.13.4+mixin.0.8.5/sponge-mixin-0.13.4+mixin.0.8.5.jar;libraries\\java\\org/ow2/asm/asm/9.6/asm-9.6.jar;libraries\\java\\org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.jar;libraries\\java\\org/ow2/asm/asm-commons/9.6/asm-commons-9.6.jar;libraries\\java\\org/ow2/asm/asm-tree/9.6/asm-tree-9.6.jar;libraries\\java\\org/ow2/asm/asm-util/9.6/asm-util-9.6.jar;libraries\\java\\net/fabricmc/intermediary/1.19.2/intermediary-1.19.2.jar;libraries/java\\net/fabricmc/fabric-loader/0.15.11/fabric-loader-0.15.11.jar;libraries\\java\\de/javagl/obj/0.3.0/obj-0.3.0.jar;libraries\\java\\net/digitalingot/fjni/0.0.1/fjni-0.0.1.jar;libraries\\java\\net/digitalingot/fdiscord/0.0.1/fdiscord-0.0.1.jar;libraries\\java\\software/bernie/geckolib/geckolib-fabric-1.19-3.5.0.jar;libraries\\java\\net/digitalingot/rust-extension/1.0.7/rust-extension-1.0.7.jar;libraries\\java\\net/digitalingot/fcef/0.0.6/fcef-0.0.6.jar;libraries\\java\\net/digitalingot/fwebp/0.0.1/fwebp-0.0.1.jar;libraries\\java\\net/digitalingot/favif/0.0.1/favif-0.0.1.jar;libraries\\java\\org/joml/joml/1.10.5/joml-1.10.5.jar;libraries\\java\\net/digitalingot/feather-server-api/messaging/0.0.4/messaging-0.0.4-SNAPSHOT.jar;libraries\\java\\org/jitsi/libjitsi/1.0-CUSTOM/libjitsi-1.0-CUSTOM.jar;libraries\\java\\org/jitsi/jitsi-utils/1.0-45-gc3afb76/jitsi-utils-1.0-45-gc3afb76.jar;libraries\\java\\org/capnproto/runtime/0.1.10/runtime-0.1.10.jar;libraries\\java\\com/google/inject/guice/5.1.0/guice-vendored-5.1.0.jar;libraries\\java\\javassist/javassist/3.12.1.GA/javassist-3.12.1.GA.jar;libraries\\java\\com/mojang/logging/1.0.0/logging-1.0.0.jar;libraries\\java\\com/mojang/blocklist/1.0.10/blocklist-1.0.10.jar;libraries\\java\\com/mojang/patchy/2.2.10/patchy-2.2.10.jar;libraries\\java\\com/github/oshi/oshi-core/5.8.5/oshi-core-5.8.5.jar;libraries\\java\\net/java/dev/jna/jna/5.10.0/jna-5.10.0.jar;libraries\\java\\net/java/dev/jna/jna-platform/5.10.0/jna-platform-5.10.0.jar;libraries\\java\\org/slf4j/slf4j-api/1.8.0-beta4/slf4j-api-1.8.0-beta4.jar;libraries\\java\\org/apache/logging/log4j/log4j-slf4j18-impl/2.17.0/log4j-slf4j18-impl-2.17.0.jar;libraries\\java\\com/ibm/icu/icu4j/70.1/icu4j-70.1.jar;libraries\\java\\com/mojang/javabridge/1.2.24/javabridge-1.2.24.jar;libraries\\java\\net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar;libraries\\java\\io/netty/netty-codec-http/4.1.76.Final/netty-codec-http-4.1.76.Final.jar;libraries\\java\\io/netty/netty-common/4.1.76.Final/netty-common-4.1.76.Final.jar;libraries\\java\\io/netty/netty-buffer/4.1.76.Final/netty-buffer-4.1.76.Final.jar;libraries\\java\\io/netty/netty-codec/4.1.76.Final/netty-codec-4.1.76.Final.jar;libraries\\java\\io/netty/netty-handler/4.1.76.Final/netty-handler-4.1.76.Final.jar;libraries\\java\\io/netty/netty-resolver/4.1.76.Final/netty-resolver-4.1.76.Final.jar;libraries\\java\\io/netty/netty-transport/4.1.76.Final/netty-transport-4.1.76.Final.jar;libraries\\java\\io/netty/netty-transport-native-unix-common/4.1.76.Final/netty-transport-native-unix-common-4.1.76.Final.jar;libraries\\java\\io/netty/netty-transport-classes-epoll/4.1.76.Final/netty-transport-classes-epoll-4.1.76.Final.jar;libraries\\java\\com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar;libraries\\java\\com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar;libraries\\java\\org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar;libraries\\java\\commons-io/commons-io/2.11.0/commons-io-2.11.0.jar;libraries\\java\\commons-codec/commons-codec/1.15/commons-codec-1.15.jar;libraries\\java\\com/mojang/brigadier/1.0.18/brigadier-1.0.18.jar;libraries\\java\\com/mojang/datafixerupper/5.0.28/datafixerupper-5.0.28.jar;libraries\\java\\com/google/code/gson/gson/2.8.9/gson-2.8.9.jar;libraries\\java\\com/mojang/authlib/3.11.49/authlib-3.11.49.jar;libraries\\java\\org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar;libraries\\java\\org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar;libraries\\java\\commons-logging/commons-logging/1.2/commons-logging-1.2.jar;libraries\\java\\org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar;libraries\\java\\it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar;libraries\\java\\org/apache/logging/log4j/log4j-api/2.17.0/log4j-api-2.17.0.jar;libraries\\java\\org/apache/logging/log4j/log4j-core/2.17.0/log4j-core-2.17.0.jar;libraries\\java\\org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1.jar;libraries\\java\\org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1.jar;libraries\\java\\org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1.jar;libraries\\java\\org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1.jar;libraries\\java\\org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1.jar;libraries\\java\\org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1.jar;libraries\\java\\org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1.jar;libraries\\java\\com/mojang/text2speech/1.13.9/text2speech-1.13.9.jar", "-DFabricMcEmu= net.minecraft.client.main.Main ", "net.digitalingot.rustextension.ProxiedStart", "net.fabricmc.loader.launch.knot.KnotClient", "--username", "yeeeat", "--version", "1.19.2-feather", "--gameDir", "C:\\Users\\Dell\\AppData\\Roaming/.minecraft", "--assetsDir", "assets", "--assetIndex", "1.19-feather-game", "--uuid", "4820f9fb67c34cb6927e80e8a03a21c6", "--accessToken", "<hidden>", "--userType", "msa", "--versionType", "feather"] info: sending javaw pid info: starting cleanup info: [13:51:11] [main/INFO]: Loading Minecraft 1.19.2 with Fabric Loader 0.15.11 info: [13:51:12] [ForkJoinPool-1-worker-2/WARN]: Mod feather uses the version release/756b8dc6 which isn't compatible with Loader's extended semantic version format (Could not parse version number component 'release/756b8dc6'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version info: [13:51:12] [main/INFO]: Loading 126 mods:     - appleskin 2.4.1+mc1.19     - architectury 6.5.85     - betterhurtcam 1.3.3+mc1.19.2     - boostedbrightness 2.1.2     - clearhitboxes 1.2     - cloth-config 8.2.88        \-- cloth-basic-math 0.6.1     - cmdkeybind 1.6.0-1.19        \-- kyrptconfig 1.4.14-1.19     - collective 6.61     - completeconfig 2.1.0        |-- coat 1.0.0-beta.19+mc22w17a        |-- completeconfig-base 2.1.0        |-- completeconfig-gui-cloth 2.1.0        |-- completeconfig-gui-coat 2.1.0        \-- completeconfig-gui-yacl 2.1.0     - cull-less-leaves 1.0.6        \-- conditional-mixin 0.3.0     - custom_hud 3.0.0+1.19.2     - darkkore 0.3.1-1.19        |-- com_electronwill_night-config_core 3.6.5        |-- com_electronwill_night-config_json 3.6.5        |-- com_electronwill_night-config_toml 3.6.5        |-- com_github_darkkronicle_konstruct_addons 2.0.3-build1        \-- com_github_darkkronicle_konstruct_core 2.0.3-build1     - debugify 2.8.0     - entitycollisionfpsfix 2.0.0.0     - entityculling 1.6.1-mc1.19.2     - exordium 1.0.2-mc1.19.2     - fabric-api 0.76.1+1.19.2        |-- fabric-api-base 0.4.15+8f4e8eb390        |-- fabric-api-lookup-api-v1 1.6.14+93d8cb8290        |-- fabric-biome-api-v1 9.1.1+16f1e31390        |-- fabric-block-api-v1 1.0.2+e415d50e90        |-- fabric-blockrenderlayer-v1 1.1.25+cafc6e8e90        |-- fabric-client-tags-api-v1 1.0.5+b35fea8390        |-- fabric-command-api-v1 1.2.16+f71b366f90        |-- fabric-command-api-v2 2.2.1+413cbbc790        |-- fabric-commands-v0 0.2.33+df3654b390        |-- fabric-containers-v0 0.1.42+df3654b390        |-- fabric-content-registries-v0 3.5.2+7c6cd14d90        |-- fabric-convention-tags-v1 1.3.0+4bc6e26290        |-- fabric-crash-report-info-v1 0.2.8+aeb40ebe90        |-- fabric-data-generation-api-v1 5.3.9+413cbbc790        |-- fabric-dimensions-v1 2.1.35+0d0f210290        |-- fabric-entity-events-v1 1.5.4+9244241690        |-- fabric-events-interaction-v0 0.4.34+562bff6e90        |-- fabric-events-lifecycle-v0 0.2.36+df3654b390        |-- fabric-game-rule-api-v1 1.0.24+b6b6abb490        |-- fabric-item-api-v1 1.6.6+b7d1888890        |-- fabric-item-groups-v0 0.3.39+9244241690        |-- fabric-key-binding-api-v1 1.0.25+5c4fce2890        |-- fabric-keybindings-v0 0.2.23+df3654b390        |-- fabric-lifecycle-events-v1 2.2.4+1b46dc7890        |-- fabric-loot-api-v2 1.1.13+83a8659290        |-- fabric-loot-tables-v1 1.1.16+9e7660c690        |-- fabric-message-api-v1 5.0.7+93d8cb8290        |-- fabric-mining-level-api-v1 2.1.24+33fbc73890        |-- fabric-models-v0 0.3.21+c6af733c90        |-- fabric-networking-api-v1 1.2.12+def3f86d90        |-- fabric-networking-v0 0.3.29+df3654b390        |-- fabric-object-builder-api-v1 4.2.2+d8ef690890        |-- fabric-particles-v1 1.0.14+4d0d570390        |-- fabric-recipe-api-v1 1.0.2+413cbbc790        |-- fabric-registry-sync-v0 0.9.33+9244241690        |-- fabric-renderer-api-v1 1.2.1+1adbf27790        |-- fabric-renderer-indigo 0.8.0+1adbf27790        |-- fabric-renderer-registries-v1 3.2.24+df3654b390        |-- fabric-rendering-data-attachment-v1 0.3.19+6e0787e690        |-- fabric-rendering-fluids-v1 3.0.11+4d0d570390        |-- fabric-rendering-v0 1.1.27+df3654b390        |-- fabric-rendering-v1 1.12.1+d8ef690890        |-- fabric-resource-conditions-api-v1 2.1.2+aae9039d90        |-- fabric-resource-loader-v0 0.8.4+edbdcddb90        |-- fabric-screen-api-v1 1.0.32+4d0d570390        |-- fabric-screen-handler-api-v1 1.3.8+1cc24b1b90        |-- fabric-sound-api-v1 1.0.2+c4f28df590        |-- fabric-textures-v0 1.0.24+aeb40ebe90        |-- fabric-transfer-api-v1 2.1.6+413cbbc790        \-- fabric-transitive-access-wideners-v1 1.3.3+08b73de490     - fabric-language-kotlin 1.9.5+kotlin.1.8.22        |-- org_jetbrains_kotlin_kotlin-reflect 1.8.22        |-- org_jetbrains_kotlin_kotlin-stdlib 1.8.22        |-- org_jetbrains_kotlin_kotlin-stdlib-jdk7 1.8.22        |-- org_jetbrains_kotlin_kotlin-stdlib-jdk8 1.8.22        |-- org_jetbrains_kotlinx_atomicfu-jvm 0.20.2        |-- org_jetbrains_kotlinx_kotlinx-coroutines-core-jvm 1.7.1        |-- org_jetbrains_kotlinx_kotlinx-coroutines-jdk8 1.7.1        |-- org_jetbrains_kotlinx_kotlinx-datetime-jvm 0.4.0        |-- org_jetbrains_kotlinx_kotlinx-serialization-cbor-jvm 1.5.1        |-- org_jetbrains_kotlinx_kotlinx-serialization-core-jvm 1.5.1        \-- org_jetbrains_kotlinx_kotlinx-serialization-json-jvm 1.5.1     - fabricloader 0.15.11        \-- mixinextras 0.3.5     - feather release/756b8dc6     - ferritecore 5.0.3     - forcecloseloadingscreen 1.1.1     - ias 8.0.1     - inventoryhud 3.4.2     - itemmodelfix 1.0.3+1.19     - java 17     - kronhud 1.19.2-2.2.3     - lessglintythings 1.3.2     - memoryleakfix 1.1.1     - minecraft 1.19.2     - mixin-conflict-helper 1.2.0     - modmenu 4.2.0-beta.2     - morecosmetics 1.2     - nametagping 1.19.2-1.2     - optifabric 1.13.24        \-- mm 2.3     - perspektive 1.2.1     - recursiveresources 2.4.3+1.19        |-- cicada 0.4.0        \-- shared-resources-api 1.5.0     - shulkerboxtooltip 3.2.2+1.19.2     - slotlock 1.1.1-BETA+1.19     - timechanger 1.2.0        \-- midnightlib 0.5.2     - ukulib 0.6.1+1.19.2        |-- com_moandjiezana_toml_toml4j 0.7.2        \-- gs_mclo_java_mclogs-java 2.1.1     - waveycapes 1.3.2     - whoami 1.0     - xaerobetterpvp 24.1.1     - yet-another-config-lib 2.2.0-for-1.19.2 info: [13:51:13] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=file:/C:/Users/Dell/AppData/Roaming/.minecraft/libraries/java/net/fabricmc/sponge-mixin/0.13.4+mixin.0.8.5/sponge-mixin-0.13.4+mixin.0.8.5.jar Service=Knot/Fabric Env=CLIENT info: [13:51:13] [main/INFO]: Compatibility level set to JAVA_16 info: [13:51:13] [main/INFO]: Compatibility level set to JAVA_17 info: [13:51:13] [main/INFO]: [Feather::EssentialMod] Installed: false info: [13:51:14] [main/WARN]: Reference map 'shared-resources-api-refmap.json' for shared-resources-api.mixins.json could not be read. If this is a development environment you can ignore this message info: [13:51:14] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/gui/options/control/SliderControl (java.lang.ClassNotFoundException: me/jellysquid/mods/sodium/client/gui/options/control/SliderControl) info: [13:51:14] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/gui/options/OptionImpl (java.lang.ClassNotFoundException: me/jellysquid/mods/sodium/client/gui/options/OptionImpl) info: [13:51:14] [main/WARN]: Force disabled MC-121772 because it only applies to OS: MAC [13:51:14] [main/WARN]: Force disabled MC-122477 because it only applies to OS: LINUX info: [13:51:14] [main/WARN]: Force disabled MC-22882 because it only applies to OS: MAC info: [13:51:14] [main/WARN]: Force disabled MC-228976 because it's conflicting with: entitycollisionfpsfix info: [13:51:14] [main/WARN]: Force disabled MC-249059 because it's conflicting with: forcecloseloadingscreen info: [13:51:15] [main/INFO]: [MemoryLeakFix] Will be applying 4 memory leak fixes! [13:51:15] [main/INFO]: [MemoryLeakFix] Currently enabled memory leak fixes: [targetEntityLeak, entityMemoriesLeak, biomeTemperatureLeak, hugeScreenshotLeak] info: [13:51:15] [main/WARN]: Error loading class: org/jetbrains/annotations/ApiStatus$Internal (java.lang.ClassNotFoundException: org/jetbrains/annotations/ApiStatus$Internal) error: Failed to setup optifine: java.lang.NoClassDefFoundError: net/fabricmc/tinyremapper/IMappingProvider     at me.modmuss50.optifabric.mod.OptifabricSetup.run(OptifabricSetup.java:46)     at java.base/java.util.ArrayList.forEach(Unknown Source)     at com.chocohead.mm.Plugin.getMixins(Plugin.java:340)     at org.spongepowered.asm.mixin.transformer.PluginHandle.getMixins(PluginHandle.java:128)     at org.spongepowered.asm.mixin.transformer.MixinConfig.postInitialise(MixinConfig.java:796)     at org.spongepowered.asm.mixin.transformer.MixinProcessor.prepareConfigs(MixinProcessor.java:568)     at org.spongepowered.asm.mixin.transformer.MixinProcessor.select(MixinProcessor.java:462)     at org.spongepowered.asm.mixin.transformer.MixinProcessor.checkSelect(MixinProcessor.java:438)     at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:290)     at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234)     at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202)     at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422)     at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323)     at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218)     at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119)     at java.base/java.lang.ClassLoader.loadClass(Unknown Source)     at java.base/java.lang.Class.forName0(Native Method)     at java.base/java.lang.Class.forName(Unknown Source)     at net.fabricmc.loader.impl.util.DefaultLanguageAdapter.create(DefaultLanguageAdapter.java:50)     at net.fabricmc.loader.impl.entrypoint.EntrypointStorage$NewEntry.getOrCreate(EntrypointStorage.java:117)     at net.fabricmc.loader.impl.entrypoint.EntrypointContainerImpl.getEntrypoint(EntrypointContainerImpl.java:53)     at net.fabricmc.loader.impl.FabricLoaderImpl.invokeEntrypoints(FabricLoaderImpl.java:384)     at net.fabricmc.loader.impl.launch.knot.Knot.init(Knot.java:160)     at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:68)     at net.fabricmc.loader.launch.knot.KnotClient.main(KnotClient.java:28)     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)     at java.base/java.lang.reflect.Method.invoke(Unknown Source)     at net.digitalingot.rustextension.ProxiedStart.main(ProxiedStart.java:16) Caused by: java.lang.ClassNotFoundException: net.fabricmc.tinyremapper.IMappingProvider     at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(Unknown Source)     at java.base/java.lang.ClassLoader.loadClass(Unknown Source)     at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:226)     at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119)     at java.base/java.lang.ClassLoader.loadClass(Unknown Source)     ... 30 more info: [13:51:15] [main/WARN]: Error loading class: net/optifine/Config (java.lang.ClassNotFoundException: net/optifine/Config) info: [13:51:15] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.5). info: [13:51:15] [main/ERROR]: Minecraft has crashed! net.fabricmc.loader.impl.FormattedException: java.lang.RuntimeException: Mixin transformation of net.minecraft.class_155 failed     at net.fabricmc.loader.impl.FormattedException.ofLocalized(FormattedException.java:63) ~[fabric-loader-0.15.11.jar:?]     at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:472) ~[fabric-loader-0.15.11.jar:?]     at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) [fabric-loader-0.15.11.jar:?]     at net.fabricmc.loader.launch.knot.KnotClient.main(KnotClient.java:28) [fabric-loader-0.15.11.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:?]     at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]     at net.digitalingot.rustextension.ProxiedStart.main(ProxiedStart.java:16) [rust-extension-1.0.7.jar:?] Caused by: java.lang.RuntimeException: Mixin transformation of net.minecraft.class_155 failed     at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427) ~[fabric-loader-0.15.11.jar:?]     at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323) ~[fabric-loader-0.15.11.jar:?]     at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218) ~[fabric-loader-0.15.11.jar:?]     at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119) ~[fabric-loader-0.15.11.jar:?]     at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:?]     at net.minecraft.client.main.Main.method_44604(Main.java:55) ~[minecraft-1.19.2.jar:?]     at net.minecraft.client.main.Main.main(Main.java:51) ~[minecraft-1.19.2.jar:?]     at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:470) ~[fabric-loader-0.15.11.jar:?]     ... 7 more Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered     at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) ~[sponge-mixin-0.13.4+mixin.0.8.5.jar:0.13.4+mixin.0.8.5]     at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234) ~[sponge-mixin-0.13.4+mixin.0.8.5.jar:0.13.4+mixin.0.8.5]     at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202) ~[sponge-mixin-0.13.4+mixin.0.8.5.jar:0.13.4+mixin.0.8.5]     at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422) ~[fabric-loader-0.15.11.jar:?]     at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323) ~[fabric-loader-0.15.11.jar:?]     at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218) ~[fabric-loader-0.15.11.jar:?]     at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119) ~[fabric-loader-0.15.11.jar:?]     at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:?]     at net.minecraft.client.main.Main.method_44604(Main.java:55) ~[minecraft-1.19.2.jar:?]     at net.minecraft.client.main.Main.main(Main.java:51) ~[minecraft-1.19.2.jar:?]     at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:470) ~[fabric-loader-0.15.11.jar:?]     ... 7 more Caused by: java.lang.ClassCastException: class com.llamalad7.mixinextras.lib.apache.commons.tuple.ImmutablePair cannot be cast to class org.apache.commons.lang3.tuple.Pair (com.llamalad7.mixinextras.lib.apache.commons.tuple.ImmutablePair and org.apache.commons.lang3.tuple.Pair are in unnamed module of loader net.fabricmc.loader.impl.launch.knot.KnotClassLoader @66a3ffec)     at ca.fxco.memoryleakfix.config.mixinExtension.UnMixinExtension.preApply(UnMixinExtension.java:23) ~[memoryleakfix-fabric-1.17+-1.1.1.temp.jar:?]     at org.spongepowered.asm.mixin.transformer.ext.Extensions.preApply(Extensions.java:156) ~[sponge-mixin-0.13.4+mixin.0.8.5.jar:0.13.4+mixin.0.8.5]     at org.spongepowered.asm.mixin.transformer.TargetClassContext.preApply(TargetClassContext.java:414) ~[sponge-mixin-0.13.4+mixin.0.8.5.jar:0.13.4+mixin.0.8.5]     at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:401) ~[sponge-mixin-0.13.4+mixin.0.8.5.jar:0.13.4+mixin.0.8.5]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) ~[sponge-mixin-0.13.4+mixin.0.8.5.jar:0.13.4+mixin.0.8.5]     at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234) ~[sponge-mixin-0.13.4+mixin.0.8.5.jar:0.13.4+mixin.0.8.5]     at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202) ~[sponge-mixin-0.13.4+mixin.0.8.5.jar:0.13.4+mixin.0.8.5]     at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422) ~[fabric-loader-0.15.11.jar:?]     at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323) ~[fabric-loader-0.15.11.jar:?]     at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218) ~[fabric-loader-0.15.11.jar:?]     at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119) ~[fabric-loader-0.15.11.jar:?]     at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:?]     at net.minecraft.client.main.Main.method_44604(Main.java:55) ~[minecraft-1.19.2.jar:?]     at net.minecraft.client.main.Main.main(Main.java:51) ~[minecraft-1.19.2.jar:?]     at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:470) ~[fabric-loader-0.15.11.jar:?]     ... 7 more info: [2024-05-08T11:51:15Z INFO  rust_launcher::start::bindings] launch stalled  
    • I am trying to play on a server with the "Perfect world" modpack but I keep crashing on loading minecraft. I tried every single mod manually and the only one that doesn't seem to wor iks the Chipped mod.   ---- Minecraft Crash Report ---- // There are four lights! Time: 2024-05-08 10:11:58 Description: Initializing game java.lang.RuntimeException: null     at net.minecraftforge.registries.GameData.postRegisterEvents(GameData.java:328) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:mixin,re:classloading,pl:mixin:APP:supermartijn642corelib.mixins.json:GameDataMixin,pl:mixin:A}     at net.minecraftforge.common.ForgeStatesProvider.lambda$new$4(ForgeStatesProvider.java:25) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:classloading}     at net.minecraftforge.fml.ModLoader.handleInlineTransition(ModLoader.java:217) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}     at net.minecraftforge.fml.ModLoader.lambda$dispatchAndHandleError$19(ModLoader.java:209) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}     at java.util.Optional.ifPresent(Optional.java:178) ~[?:?] {re:mixin}     at net.minecraftforge.fml.ModLoader.dispatchAndHandleError(ModLoader.java:209) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}     at net.minecraftforge.fml.ModLoader.lambda$gatherAndInitializeMods$13(ModLoader.java:183) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}     at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] {re:mixin}     at net.minecraftforge.fml.ModLoader.gatherAndInitializeMods(ModLoader.java:183) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}     at net.minecraftforge.client.loading.ClientModLoader.lambda$begin$1(ClientModLoader.java:70) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:classloading,pl:runtimedistcleaner:A}     at net.minecraftforge.client.loading.ClientModLoader.lambda$createRunnableWithCatch$4(ClientModLoader.java:90) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:classloading,pl:runtimedistcleaner:A}     at net.minecraftforge.client.loading.ClientModLoader.begin(ClientModLoader.java:70) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:classloading,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.<init>(Minecraft.java:459) ~[client-1.20.1-20230612.114412-srg.jar%23376!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,pl:mixin:APP:redirector.mixins.json:net.minecraft.client.MinecraftMixin,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMinecraft,pl:mixin:APP:konkrete.mixin.json:MixinMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:xaeroplus.mixins.json:mc.MixinMinecraftClient,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:create.mixins.json:client.WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:182) ~[1.20.1-forge-47.2.0.jar:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:flywheel.mixins.json:ClientMainMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.2.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.2.0.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {}     Suppressed: net.minecraftforge.fml.ModLoadingException: Sophisticated Backpacks (sophisticatedbackpacks) encountered an error during the common_setup event phase §7java.lang.NoSuchFieldError: BOTANIST_WORKBENCH_TYPE         at net.minecraftforge.fml.javafmlmod.FMLModContainer.acceptEvent(FMLModContainer.java:111) ~[javafmllanguage-1.20.1-47.2.0.jar%23378!/:?] {}         at net.minecraftforge.fml.ModLoader.lambda$postEventWithWrapInModOrder$33(ModLoader.java:346) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}         at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] {re:mixin}         at net.minecraftforge.fml.ModList.forEachModInOrder(ModList.java:227) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}         at net.minecraftforge.fml.ModLoader.postEventWithWrapInModOrder(ModLoader.java:344) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}         at net.minecraftforge.fml.ModLoader.postEventWrapContainerInModOrder(ModLoader.java:337) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}         at net.minecraftforge.registries.GameData.postRegisterEvents(GameData.java:342) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:mixin,re:classloading,pl:mixin:APP:supermartijn642corelib.mixins.json:GameDataMixin,pl:mixin:A}         at net.minecraftforge.common.ForgeStatesProvider.lambda$new$4(ForgeStatesProvider.java:25) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:classloading}         at net.minecraftforge.fml.ModLoader.handleInlineTransition(ModLoader.java:217) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}         at net.minecraftforge.fml.ModLoader.lambda$dispatchAndHandleError$19(ModLoader.java:209) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}         at java.util.Optional.ifPresent(Optional.java:178) ~[?:?] {re:mixin}         at net.minecraftforge.fml.ModLoader.dispatchAndHandleError(ModLoader.java:209) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}         at net.minecraftforge.fml.ModLoader.lambda$gatherAndInitializeMods$13(ModLoader.java:183) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}         at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] {re:mixin}         at net.minecraftforge.fml.ModLoader.gatherAndInitializeMods(ModLoader.java:183) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}         at net.minecraftforge.client.loading.ClientModLoader.lambda$begin$1(ClientModLoader.java:70) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:classloading,pl:runtimedistcleaner:A}         at net.minecraftforge.client.loading.ClientModLoader.lambda$createRunnableWithCatch$4(ClientModLoader.java:90) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:classloading,pl:runtimedistcleaner:A}         at net.minecraftforge.client.loading.ClientModLoader.begin(ClientModLoader.java:70) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:classloading,pl:runtimedistcleaner:A}         at net.minecraft.client.Minecraft.<init>(Minecraft.java:459) ~[client-1.20.1-20230612.114412-srg.jar%23376!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,pl:mixin:APP:redirector.mixins.json:net.minecraft.client.MinecraftMixin,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMinecraft,pl:mixin:APP:konkrete.mixin.json:MixinMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:xaeroplus.mixins.json:mc.MixinMinecraftClient,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:create.mixins.json:client.WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A}         at net.minecraft.client.main.Main.main(Main.java:182) ~[1.20.1-forge-47.2.0.jar:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:flywheel.mixins.json:ClientMainMixin,pl:mixin:A,pl:runtimedistcleaner:A}         at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}         at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}         at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}         at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}         at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar:?] {}         at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.2.0.jar:?] {}         at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.2.0.jar:?] {}         at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}         at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}         at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}         at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}         at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}         at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}         at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}         at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {}     Caused by: java.lang.NoSuchFieldError: BOTANIST_WORKBENCH_TYPE         at net.p3pp3rf1y.sophisticatedbackpacks.compat.chipped.ChippedCompat.lambda$static$0(ChippedCompat.java:34) ~[sophisticatedbackpacks-1.20.1-3.19.5.988.jar%23361!/:1.20.1-3.19.5.988] {re:classloading}         at net.minecraftforge.registries.DeferredRegister.lambda$addEntries$1(DeferredRegister.java:386) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:classloading}         at net.minecraftforge.registries.RegisterEvent.register(RegisterEvent.java:59) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:mixin,re:classloading,pl:eventbus:A}         at net.minecraftforge.registries.DeferredRegister.addEntries(DeferredRegister.java:386) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:classloading}         at net.minecraftforge.registries.DeferredRegister$EventDispatcher.handleEvent(DeferredRegister.java:328) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:classloading}         at net.minecraftforge.registries.__EventDispatcher_handleEvent_RegisterEvent.invoke(.dynamic) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:classloading,pl:eventbus:B}         at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:73) ~[eventbus-6.0.5.jar%2387!/:?] {}         at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.5.jar%2387!/:?] {}         at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.5.jar%2387!/:?] {}         at net.minecraftforge.fml.javafmlmod.FMLModContainer.acceptEvent(FMLModContainer.java:107) ~[javafmllanguage-1.20.1-47.2.0.jar%23378!/:?] {}         ... 34 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Stacktrace:     at net.minecraftforge.registries.GameData.postRegisterEvents(GameData.java:328) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:mixin,re:classloading,pl:mixin:APP:supermartijn642corelib.mixins.json:GameDataMixin,pl:mixin:A}     at net.minecraftforge.common.ForgeStatesProvider.lambda$new$4(ForgeStatesProvider.java:25) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:classloading}     at net.minecraftforge.fml.ModLoader.handleInlineTransition(ModLoader.java:217) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}     at net.minecraftforge.fml.ModLoader.lambda$dispatchAndHandleError$19(ModLoader.java:209) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}     at java.util.Optional.ifPresent(Optional.java:178) ~[?:?] {re:mixin}     at net.minecraftforge.fml.ModLoader.dispatchAndHandleError(ModLoader.java:209) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}     at net.minecraftforge.fml.ModLoader.lambda$gatherAndInitializeMods$13(ModLoader.java:183) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}     at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] {re:mixin}     at net.minecraftforge.fml.ModLoader.gatherAndInitializeMods(ModLoader.java:183) ~[fmlcore-1.20.1-47.2.0.jar%23377!/:?] {}     at net.minecraftforge.client.loading.ClientModLoader.lambda$begin$1(ClientModLoader.java:70) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:classloading,pl:runtimedistcleaner:A}     at net.minecraftforge.client.loading.ClientModLoader.lambda$createRunnableWithCatch$4(ClientModLoader.java:90) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:classloading,pl:runtimedistcleaner:A}     at net.minecraftforge.client.loading.ClientModLoader.begin(ClientModLoader.java:70) ~[forge-1.20.1-47.2.0-universal.jar%23381!/:?] {re:classloading,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.<init>(Minecraft.java:459) ~[client-1.20.1-20230612.114412-srg.jar%23376!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,pl:mixin:APP:redirector.mixins.json:net.minecraft.client.MinecraftMixin,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMinecraft,pl:mixin:APP:konkrete.mixin.json:MixinMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:xaeroplus.mixins.json:mc.MixinMinecraftClient,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:create.mixins.json:client.WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A} -- Initialization -- Details:     Modules:          ADVAPI32.dll:Advanced Windows 32 Base API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         COMCTL32.dll:User Experience Controls Library:6.10 (WinBuild.160101.0800):Microsoft Corporation         CRYPT32.dll:Crypto API32:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         CRYPTBASE.DLL:Base cryptographic API DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         CRYPTSP.dll:Cryptographic Service Provider API:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation         CoreMessaging.dll:Microsoft CoreMessaging Dll:10.0.22621.3085 (WinBuild.160101.0800):Microsoft Corporation         CoreUIComponents.dll:Microsoft Core UI Components Dll:10.0.22621.2506:Microsoft Corporation         DBGHELP.DLL:Windows Image Helper:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation         DEVOBJ.dll:Device Information Set DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation         DNSAPI.dll:DNS Client API DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         GDI32.dll:GDI Client DLL:10.0.22621.3085 (WinBuild.160101.0800):Microsoft Corporation         GLU32.dll:OpenGL Utility Library DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         IMM32.DLL:Multi-User Windows IMM32 API Client DLL:10.0.22621.3374 (WinBuild.160101.0800):Microsoft Corporation         IPHLPAPI.DLL:IP Helper API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         KERNEL32.DLL:Windows NT BASE API Client DLL:10.0.22621.3374 (WinBuild.160101.0800):Microsoft Corporation         KERNELBASE.dll:Windows NT BASE API Client DLL:10.0.22621.3374 (WinBuild.160101.0800):Microsoft Corporation         MSCTF.dll:MSCTF Server DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         MpOav.dll:IOfficeAntiVirus Module:4.18.24030.9 (cd8105518e5571788ee3b6a178bae8fbcdf461a8):Microsoft Corporation         NSI.dll:NSI User-mode interface DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         NTASN1.dll:Microsoft ASN.1 API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         OLEAUT32.dll:OLEAUT32.DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation         POWRPROF.dll:Power Profile Helper DLL:10.0.22621.3374 (WinBuild.160101.0800):Microsoft Corporation         PSAPI.DLL:Process Status Helper:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         RPCRT4.dll:Remote Procedure Call Runtime:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation         SETUPAPI.dll:Windows Setup API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         SHCORE.dll:SHCORE:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         SHELL32.dll:Windows Shell Common Dll:10.0.22621.2792 (WinBuild.160101.0800):Microsoft Corporation         UMPDC.dll:User Mode Power Dependency Coordinator:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         USER32.dll:Multi-User Windows USER API Client DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         USERENV.dll:Userenv:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         VCRUNTIME140.dll:Microsoft® C Runtime Library:14.29.30139.0 built by: vcwrkspc:Microsoft Corporation         VERSION.dll:Version Checking and File Installation Libraries:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         WINHTTP.dll:Windows HTTP Services:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         WINMM.dll:MCI API DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         WINSTA.dll:Winstation Library:10.0.22621.3374 (WinBuild.160101.0800):Microsoft Corporation         WINTRUST.dll:Microsoft Trust Verification APIs:10.0.22621.3447 (WinBuild.160101.0800):Microsoft Corporation         WS2_32.dll:Windows Socket 2.0 32-Bit DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         WSOCK32.dll:Windows Socket 32-Bit DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         WTSAPI32.dll:Windows Remote Desktop Session Host Server SDK APIs:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         amsi.dll:Anti-Malware Scan Interface:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         bcrypt.dll:Windows Cryptographic Primitives Library:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         bcryptPrimitives.dll:Windows Cryptographic Primitives Library:10.0.22621.3374 (WinBuild.160101.0800):Microsoft Corporation         cfgmgr32.dll:Configuration Manager DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation         clbcatq.dll:COM+ Configuration Catalog:2001.12.10941.16384 (WinBuild.160101.0800):Microsoft Corporation         combase.dll:Microsoft COM for Windows:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         cryptnet.dll:Crypto Network Related API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         dbgcore.DLL:Windows Core Debugging Helpers:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         dhcpcsvc.DLL:DHCP Client Service:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         dhcpcsvc6.DLL:DHCPv6 Client:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         dinput8.dll:Microsoft DirectInput:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         drvstore.dll:Driver Store API:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation         dwmapi.dll:Microsoft Desktop Window Manager API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         dxcore.dll:DXCore:10.0.22621.3374 (WinBuild.160101.0800):Microsoft Corporation         fwpuclnt.dll:FWP/IPsec User-Mode API:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation         gdi32full.dll:GDI Client DLL:10.0.22621.3374 (WinBuild.160101.0800):Microsoft Corporation         glfw.dll:GLFW 3.4.0 DLL:3.4.0:GLFW         icm32.dll:Microsoft Color Management Module (CMM):10.0.22621.3085 (WinBuild.160101.0800):Microsoft Corporation         imagehlp.dll:Windows NT Image Helper:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         inputhost.dll:InputHost:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation         java.dll:OpenJDK Platform binary:17.0.8.0:Microsoft         javaw.exe:OpenJDK Platform binary:17.0.8.0:Microsoft         jemalloc.dll         jimage.dll:OpenJDK Platform binary:17.0.8.0:Microsoft         jli.dll:OpenJDK Platform binary:17.0.8.0:Microsoft         jna13674901637216541159.dll:JNA native library:6.1.4:Java(TM) Native Access (JNA)         jsvml.dll:OpenJDK Platform binary:17.0.8.0:Microsoft         jvm.dll:OpenJDK 64-Bit server VM:17.0.8.0:Microsoft         kernel.appcore.dll:AppModel API Host:10.0.22621.2715 (WinBuild.160101.0800):Microsoft Corporation         lwjgl.dll         lwjgl_opengl.dll         lwjgl_stb.dll         management.dll:OpenJDK Platform binary:17.0.8.0:Microsoft         management_ext.dll:OpenJDK Platform binary:17.0.8.0:Microsoft         msasn1.dll:ASN.1 Runtime APIs:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation         mscms.dll:Microsoft Color Matching System DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         msvcp140.dll:Microsoft® C Runtime Library:14.29.30139.0 built by: vcwrkspc:Microsoft Corporation         msvcp_win.dll:Microsoft® C Runtime Library:10.0.22621.3374 (WinBuild.160101.0800):Microsoft Corporation         msvcrt.dll:Windows NT CRT DLL:7.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation         mswsock.dll:Microsoft Windows Sockets 2.0 Service Provider:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         napinsp.dll:E-mail Naming Shim Provider:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         ncrypt.dll:Windows NCrypt Router:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         net.dll:OpenJDK Platform binary:17.0.8.0:Microsoft         nio.dll:OpenJDK Platform binary:17.0.8.0:Microsoft         nlansp_c.dll:NLA Namespace Service Provider DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation         ntdll.dll:NT Layer DLL:10.0.22621.3374 (WinBuild.160101.0800):Microsoft Corporation         ntmarta.dll:Windows NT MARTA provider:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         nvgpucomp64.dll:NVIDIA GPU Compiler Driver, Version 552.22 :31.0.15.5222:NVIDIA Corporation         nvoglv64.dll:NVIDIA Compatible OpenGL ICD:31.0.15.5222:NVIDIA Corporation         nvspcap64.dll:NVIDIA Game Proxy:3.28.0.412:NVIDIA Corporation         ole32.dll:Microsoft OLE for Windows:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         opengl32.dll:OpenGL Client DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation         pdh.dll:Windows Performance Data Helper DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         perfos.dll:Windows System Performance Objects DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         perfproc.dll:Windows System Process Performance Objects DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         pfclient.dll:SysMain Client:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         pnrpnsp.dll:PNRP Name Space Provider:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         profapi.dll:User Profile Basic API:10.0.22621.3374 (WinBuild.160101.0800):Microsoft Corporation         rasadhlp.dll:Remote Access AutoDial Helper:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         rsaenh.dll:Microsoft Enhanced Cryptographic Provider:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         sechost.dll:Host for SCM/SDDL/LSA Lookup APIs:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         shlwapi.dll:Shell Light-weight Utility Library:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         sunmscapi.dll:OpenJDK Platform binary:17.0.8.0:Microsoft         textinputframework.dll:"TextInputFramework.DYNLINK":10.0.22621.3447 (WinBuild.160101.0800):Microsoft Corporation         ucrtbase.dll:Microsoft® C Runtime Library:10.0.22621.3374 (WinBuild.160101.0800):Microsoft Corporation         uxtheme.dll:Microsoft UxTheme Library:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         vcruntime140_1.dll:Microsoft® C Runtime Library:14.29.30139.0 built by: vcwrkspc:Microsoft Corporation         verify.dll:OpenJDK Platform binary:17.0.8.0:Microsoft         win32u.dll:Win32u:10.0.22621.3447 (WinBuild.160101.0800):Microsoft Corporation         windows.storage.dll:Microsoft WinRT Storage API:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation         winrnr.dll:LDAP RnR Provider DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         wintypes.dll:Windows Base Types DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         wldp.dll:Windows Lockdown Policy:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation         wshbth.dll:Windows Sockets Helper DLL:10.0.22621.3374 (WinBuild.160101.0800):Microsoft Corporation         wshunix.dll:AF_UNIX Winsock2 Helper DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         xinput1_4.dll:Microsoft Common Controller API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation         zip.dll:OpenJDK Platform binary:17.0.8.0:Microsoft Stacktrace:     at net.minecraft.client.main.Main.main(Main.java:182) ~[1.20.1-forge-47.2.0.jar:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:flywheel.mixins.json:ClientMainMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.2.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.2.0.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} -- System Details -- Details:     Minecraft Version: 1.20.1     Minecraft Version ID: 1.20.1     Operating System: Windows 11 (amd64) version 10.0     Java Version: 17.0.8, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 746024536 bytes (711 MiB) / 1308622848 bytes (1248 MiB) up to 8589934592 bytes (8192 MiB)     CPUs: 16     Processor Vendor: GenuineIntel     Processor Name: Intel(R) Core(TM) i7-10870H CPU @ 2.20GHz     Identifier: Intel64 Family 6 Model 165 Stepping 2     Microarchitecture: unknown     Frequency (GHz): 2.21     Number of physical packages: 1     Number of physical CPUs: 8     Number of logical CPUs: 16     Graphics card #0 name: NVIDIA GeForce RTX 3070 Laptop GPU     Graphics card #0 vendor: NVIDIA (0x10de)     Graphics card #0 VRAM (MB): 4095.00     Graphics card #0 deviceId: 0x249d     Graphics card #0 versionInfo: DriverVersion=31.0.15.5222     Graphics card #1 name: Intel(R) UHD Graphics     Graphics card #1 vendor: Intel Corporation (0x8086)     Graphics card #1 VRAM (MB): 1024.00     Graphics card #1 deviceId: 0x9bc4     Graphics card #1 versionInfo: DriverVersion=31.0.101.2115     Memory slot #0 capacity (MB): 8192.00     Memory slot #0 clockSpeed (GHz): 3.20     Memory slot #0 type: DDR4     Memory slot #1 capacity (MB): 8192.00     Memory slot #1 clockSpeed (GHz): 3.20     Memory slot #1 type: DDR4     Virtual memory max (MB): 32399.69     Virtual memory used (MB): 19800.23     Swap memory total (MB): 16199.84     Swap memory used (MB): 200.37     JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx8G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M     Launched Version: 1.20.1-forge-47.2.0     Backend library: LWJGL version 3.3.1 build 7     Backend API: NVIDIA GeForce RTX 3070 Laptop GPU/PCIe/SSE2 GL version 4.6.0 NVIDIA 552.22, NVIDIA Corporation     Window size: <not initialized>     GL Caps: Using framebuffer using OpenGL 3.2     GL debug messages:      Using VBOs: Yes     Is Modded: Definitely; Client brand changed to 'forge'     Type: Client (map_client.txt)     CPU: 16x Intel(R) Core(TM) i7-10870H CPU @ 2.20GHz     ModLauncher: 10.0.9+10.0.9+main.dcd20f30     ModLauncher launch target: forgeclient     ModLauncher naming: srg     ModLauncher services:          mixin-0.8.5.jar mixin PLUGINSERVICE          eventbus-6.0.5.jar eventbus PLUGINSERVICE          fmlloader-1.20.1-47.2.0.jar slf4jfixer PLUGINSERVICE          fmlloader-1.20.1-47.2.0.jar object_holder_definalize PLUGINSERVICE          fmlloader-1.20.1-47.2.0.jar runtime_enum_extender PLUGINSERVICE          fmlloader-1.20.1-47.2.0.jar capability_token_subclass PLUGINSERVICE          accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE          fmlloader-1.20.1-47.2.0.jar runtimedistcleaner PLUGINSERVICE          modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE      FML Language Providers:          [email protected]         javafml@null         [email protected]         lowcodefml@null     Mod List:          dynamiclightsreforged-1.20.1_v1.6.0.jar           |Rubidium Dynamic Lights       |dynamiclightsreforged         |1.20.1_v1.6.0       |COMMON_SET|Manifest: NOSIGNATURE         supermartijn642configlib-1.1.8-forge-mc1.20.jar   |SuperMartijn642's Config Libra|supermartijn642configlib      |1.1.8               |COMMON_SET|Manifest: NOSIGNATURE         open-parties-and-claims-forge-1.20.1-0.20.1.jar   |Open Parties and Claims       |openpartiesandclaims          |0.20.1              |COMMON_SET|Manifest: NOSIGNATURE         createdeco-2.0.0-forge-1.20.1.jar                 |Create Deco                   |createdeco                    |2.0.0-forge-1.20.1  |COMMON_SET|Manifest: NOSIGNATURE         recipeessentials-1.20.1-3.2.jar                   |recipeessentials mod          |recipeessentials              |1.20.1-3.2          |COMMON_SET|Manifest: NOSIGNATURE         connectivity-1.20.1-4.9.jar                       |Connectivity Mod              |connectivity                  |1.20.1-4.9          |COMMON_SET|Manifest: NOSIGNATURE         sophisticatedcore-1.20.1-0.5.113.524.jar          |Sophisticated Core            |sophisticatedcore             |0.5.113.524         |COMMON_SET|Manifest: NOSIGNATURE         gpumemleakfix-1.20.1-1.8.jar                      |Gpu memory leak fix           |gpumemleakfix                 |1.20.1-1.8          |COMMON_SET|Manifest: NOSIGNATURE         create_recycle_1.0.2_forge_1.20.1.jar             |Create Recycling              |create_crush_everything       |1.0.2               |COMMON_SET|Manifest: NOSIGNATURE         structureessentials-1.20.1-3.2.jar                |Structure Essentials mod      |structureessentials           |1.20.1-3.2          |COMMON_SET|Manifest: NOSIGNATURE         villagernames-1.20.1-7.3.jar                      |Villager Names                |villagernames                 |7.3                 |COMMON_SET|Manifest: NOSIGNATURE         Controlling-forge-1.20.1-12.0.2.jar               |Controlling                   |controlling                   |12.0.2              |COMMON_SET|Manifest: NOSIGNATURE         citadel-2.4.9-1.20.1.jar                          |Citadel                       |citadel                       |2.4.9               |COMMON_SET|Manifest: NOSIGNATURE         alexsmobs-1.22.7.jar                              |Alex's Mobs                   |alexsmobs                     |1.22.7              |COMMON_SET|Manifest: NOSIGNATURE         mixinextras-forge-0.2.0.jar                       |MixinExtras                   |mixinextras                   |0.2.0               |COMMON_SET|Manifest: NOSIGNATURE         clientcrafting-1.20.1-1.7.jar                     |clientcrafting mod            |clientcrafting                |1.20.1-1.7          |COMMON_SET|Manifest: NOSIGNATURE         Bookshelf-Forge-1.20.1-20.1.8.jar                 |Bookshelf                     |bookshelf                     |20.1.8              |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         Kambrik-6.1.1+1.20.1-forge.jar                    |Kambrik                       |kambrik                       |6.1.1+1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         sophisticatedbackpacks-1.20.1-3.19.5.988.jar      |Sophisticated Backpacks       |sophisticatedbackpacks        |3.19.5.988          |COMMON_SET|Manifest: NOSIGNATURE         guardvillagers-1.20.1-1.6.3.jar                   |Guard Villagers               |guardvillagers                |1.20.1-1.6.3        |COMMON_SET|Manifest: NOSIGNATURE         create_dragon_lib-1.20.1-1.3.3.jar                |Create: Dragon Lib            |create_dragon_lib             |1.3.3               |COMMON_SET|Manifest: NOSIGNATURE         mcw-doors-1.1.0forge-mc1.20.1.jar                 |Macaw's Doors                 |mcwdoors                      |1.1.0               |COMMON_SET|Manifest: NOSIGNATURE         Steam_Rails-1.5.3+forge-mc1.20.1.jar              |Create: Steam 'n' Rails       |railways                      |1.5.3+forge-mc1.20.1|COMMON_SET|Manifest: NOSIGNATURE         balm-forge-1.20.1-7.2.1.jar                       |Balm                          |balm                          |7.2.1               |COMMON_SET|Manifest: NOSIGNATURE         JustEnoughResources-1.20.1-1.4.0.238.jar          |Just Enough Resources         |jeresources                   |1.4.0.238           |COMMON_SET|Manifest: NOSIGNATURE         cloth-config-11.1.118-forge.jar                   |Cloth Config v10 API          |cloth_config                  |11.1.118            |COMMON_SET|Manifest: NOSIGNATURE         soundphysics-forge-1.20.1-1.1.2.jar               |Sound Physics Remastered      |sound_physics_remastered      |1.20.1-1.1.2        |COMMON_SET|Manifest: NOSIGNATURE         konkrete_forge_1.6.1-2_MC_1.20.jar                |Konkrete                      |konkrete                      |1.6.1               |COMMON_SET|Manifest: NOSIGNATURE         athena-forge-1.20.1-3.1.1.jar                     |Athena                        |athena                        |3.1.1               |COMMON_SET|Manifest: NOSIGNATURE         corpse-1.20.1-1.0.9.jar                           |Corpse                        |corpse                        |1.20.1-1.0.9        |COMMON_SET|Manifest: NOSIGNATURE         Chipped-forge-1.20.1-3.0.4.jar                    |Chipped                       |chipped                       |3.0.4               |COMMON_SET|Manifest: NOSIGNATURE         mcw-bridges-2.1.1-mc1.20.1forge.jar               |Macaw's Bridges               |mcwbridges                    |2.1.1               |COMMON_SET|Manifest: NOSIGNATURE         FarmersDelight-1.20.1-1.2.3.jar                   |Farmer's Delight              |farmersdelight                |1.20.1-1.2.3        |COMMON_SET|Manifest: NOSIGNATURE         mcw-trapdoors-1.1.2-mc1.20.1forge.jar             |Macaw's Trapdoors             |mcwtrpdoors                   |1.1.2               |COMMON_SET|Manifest: NOSIGNATURE         mcw-fences-1.0.7-mc1.20.1forge.jar                |Macaw's Fences and Walls      |mcwfences                     |1.0.7               |COMMON_SET|Manifest: NOSIGNATURE         supermartijn642corelib-1.1.16-forge-mc1.20.1.jar  |SuperMartijn642's Core Lib    |supermartijn642corelib        |1.1.16              |COMMON_SET|Manifest: NOSIGNATURE         create_recipes-1.2.0.jar                          |Create: More Recipes          |create_recipes                |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         Bountiful-6.0.3+1.20.1-forge.jar                  |Bountiful                     |bountiful                     |6.0.3+1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         leaky-1.20.1-1.7.jar                              |leaky mod                     |leaky                         |1.20.1-1.7          |COMMON_SET|Manifest: NOSIGNATURE         curios-forge-5.4.7+1.20.1.jar                     |Curios API                    |curios                        |5.4.7+1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         collective-1.20.1-7.28.jar                        |Collective                    |collective                    |7.28                |COMMON_SET|Manifest: NOSIGNATURE         Searchables-forge-1.20.1-1.0.2.jar                |Searchables                   |searchables                   |1.0.2               |COMMON_SET|Manifest: NOSIGNATURE         FramedBlocks-9.1.6.jar                            |FramedBlocks                  |framedblocks                  |9.1.6               |COMMON_SET|Manifest: NOSIGNATURE         bettervillage-forge-1.20.1-3.2.0.jar              |Better village                |bettervillage                 |3.1.0               |COMMON_SET|Manifest: NOSIGNATURE         resourcefullib-forge-1.20.1-2.1.20.jar            |Resourceful Lib               |resourcefullib                |2.1.20              |COMMON_SET|Manifest: NOSIGNATURE         constructionwand-1.20.1-2.11.jar                  |Construction Wand             |constructionwand              |1.20.1-2.11         |COMMON_SET|Manifest: NOSIGNATURE         architectury-9.1.12-forge.jar                     |Architectury                  |architectury                  |9.1.12              |COMMON_SET|Manifest: NOSIGNATURE         cupboard-1.20.1-2.2.jar                           |Cupboard utilities            |cupboard                      |1.20.1-2.2          |COMMON_SET|Manifest: NOSIGNATURE         chunkloaders-1.2.8a-forge-mc1.20.1.jar            |Chunk Loaders                 |chunkloaders                  |1.2.8a              |COMMON_SET|Manifest: NOSIGNATURE         JadeAddons-1.20.1-forge-5.2.2.jar                 |Jade Addons                   |jadeaddons                    |5.2.2               |COMMON_SET|Manifest: NOSIGNATURE         KryptonReforged-0.2.3.jar                         |Krypton Reforged              |krypton                       |0.2.3               |COMMON_SET|Manifest: NOSIGNATURE         foodeffecttooltips-1.0.1+forge-1.20.jar.jar       |Food Effect Tooltips          |foodeffecttooltips            |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         letmedespawn-forge-1.20.x-1.2.0.jar               |Let Me Despawn                |letmedespawn                  |1.2.0               |COMMON_SET|Manifest: NOSIGNATURE         FastLeafDecay-31.jar                              |Fast Leaf Decay               |fastleafdecay                 |31                  |COMMON_SET|Manifest: NOSIGNATURE         gamemenumodoption-mc1.20.1-2.2.1.jar              |Game Menu Mod Option          |gamemenumodoption             |2.2.1               |COMMON_SET|Manifest: NOSIGNATURE         sliceanddice-forge-3.2.0.jar                      |Create Slice & Dice           |sliceanddice                  |3.2.0               |COMMON_SET|Manifest: NOSIGNATURE         inventorysorter-1.20.1-23.0.1.jar                 |Simple Inventory Sorter       |inventorysorter               |23.0.1              |COMMON_SET|Manifest: NOSIGNATURE         BetterAnimationsCollection-v8.0.0-1.20.1-Forge.jar|Better Animations Collection  |betteranimationscollection    |8.0.0               |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         puzzlesapi-forge-8.1.4.jar                        |Puzzles Api                   |puzzlesapi                    |8.1.4               |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         ftb-library-forge-2001.1.4.jar                    |FTB Library                   |ftblibrary                    |2001.1.4            |COMMON_SET|Manifest: NOSIGNATURE         ftb-teams-forge-2001.1.4.jar                      |FTB Teams                     |ftbteams                      |2001.1.4            |COMMON_SET|Manifest: NOSIGNATURE         ftb-ranks-forge-2001.1.3.jar                      |FTB Ranks                     |ftbranks                      |2001.1.3            |COMMON_SET|Manifest: NOSIGNATURE         rechiseled-1.1.5c-forge-mc1.20.jar                |Rechiseled                    |rechiseled                    |1.1.5c              |COMMON_SET|Manifest: NOSIGNATURE         item-filters-forge-2001.1.0-build.59.jar          |Item Filters                  |itemfilters                   |2001.1.0-build.59   |COMMON_SET|Manifest: NOSIGNATURE         jei-1.20.1-forge-15.2.0.27.jar                    |Just Enough Items             |jei                           |15.2.0.27           |COMMON_SET|Manifest: NOSIGNATURE         AttributeFix-Forge-1.20.1-21.0.4.jar              |AttributeFix                  |attributefix                  |21.0.4              |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         callablehorses-1.20.1-1.3.0.1.jar                 |Callable Horses               |callablehorses                |1.3.0.1             |COMMON_SET|Manifest: 8c:03:ac:7d:21:62:65:e2:83:91:f3:22:57:99:ed:75:78:1e:db:de:03:99:ef:53:3b:59:95:18:01:bc:84:a9         libraryferret-forge-1.20.1-4.0.0.jar              |Library ferret                |libraryferret                 |4.0.0               |COMMON_SET|Manifest: NOSIGNATURE         createchunkloading-1.6.0-forge.jar                |Create Chunkloading           |createchunkloading            |1.6.0               |COMMON_SET|Manifest: NOSIGNATURE         waystones-forge-1.20-14.1.3.jar                   |Waystones                     |waystones                     |14.1.3              |COMMON_SET|Manifest: NOSIGNATURE         fullstackwatchdog-1.0.1+1.19.2-forge.jar          |FullStack Watchdog            |fullstackwatchdog             |1.0.1+1.19.2-forge  |COMMON_SET|Manifest: NOSIGNATURE         Clumps-forge-1.20.1-12.0.0.3.jar                  |Clumps                        |clumps                        |12.0.0.3            |COMMON_SET|Manifest: NOSIGNATURE         comforts-forge-6.3.4+1.20.1.jar                   |Comforts                      |comforts                      |6.3.4+1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         NaturesCompass-1.20.1-1.11.2-forge.jar            |Nature's Compass              |naturescompass                |1.20.1-1.11.2-forge |COMMON_SET|Manifest: NOSIGNATURE         StrawStatues-v8.0.2-1.20.1-Forge.jar              |Straw Statues                 |strawstatues                  |8.0.2               |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         BadMobs-1.20.1-19.0.2.jar                         |BadMobs                       |badmobs                       |19.0.2              |COMMON_SET|Manifest: NOSIGNATURE         rechiseledcreate-1.0.1-forge-mc1.20.jar           |Rechiseled: Create            |rechiseledcreate              |1.0.1               |COMMON_SET|Manifest: NOSIGNATURE         neruina-1.3.0-forge+1.18.2-1.20.1.jar             |Neruina                       |neruina                       |1.3.0               |COMMON_SET|Manifest: NOSIGNATURE         create-confectionery1.20.1_v1.1.0.jar             |Create Confectionery          |create_confectionery          |1.1.0               |COMMON_SET|Manifest: NOSIGNATURE         starlight-1.1.2+forge.1cda73c.jar                 |Starlight                     |starlight                     |1.1.2+forge.1cda73c |COMMON_SET|Manifest: NOSIGNATURE         fusion-1.1.0b-forge-mc1.20.1.jar                  |Fusion                        |fusion                        |1.1.0b              |COMMON_SET|Manifest: NOSIGNATURE         puzzlesaccessapi-forge-8.0.7.jar                  |Puzzles Access Api            |puzzlesaccessapi              |8.0.7               |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         rubidium_extras-1.20.1_v1.4.3.jar                 |Rubidium Extras               |rubidium_extras               |1.20.1_v1.4.3       |COMMON_SET|Manifest: NOSIGNATURE         ftb-chunks-forge-2001.2.4.jar                     |FTB Chunks                    |ftbchunks                     |2001.2.4            |COMMON_SET|Manifest: NOSIGNATURE         forge-1.20.1-47.2.0-universal.jar                 |Forge                         |forge                         |47.2.0              |COMMON_SET|Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90         craftingtweaks-forge-1.20-18.2.2.jar              |CraftingTweaks                |craftingtweaks                |18.2.2              |COMMON_SET|Manifest: NOSIGNATURE         client-1.20.1-20230612.114412-srg.jar             |Minecraft                     |minecraft                     |1.20.1              |COMMON_SET|Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f         EnchantmentDescriptions-Forge-1.20.1-17.0.11.jar  |EnchantmentDescriptions       |enchdesc                      |17.0.11             |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         MouseTweaks-forge-mc1.20-2.25.jar                 |Mouse Tweaks                  |mousetweaks                   |2.25                |COMMON_SET|Manifest: NOSIGNATURE         ftb-quests-forge-2001.3.0.jar                     |FTB Quests                    |ftbquests                     |2001.3.0            |COMMON_SET|Manifest: NOSIGNATURE         ftb-xmod-compat-forge-2.1.0.jar                   |FTB XMod Compat               |ftbxmodcompat                 |2.1.0               |COMMON_SET|Manifest: NOSIGNATURE         mixinsquared-forge-0.1.1.jar                      |MixinSquared                  |mixinsquared                  |0.1.1               |COMMON_SET|Manifest: NOSIGNATURE         Jade-1.20.1-forge-11.7.1.jar                      |Jade                          |jade                          |11.7.1              |COMMON_SET|Manifest: NOSIGNATURE         spectrelib-forge-0.13.14+1.20.1.jar               |SpectreLib                    |spectrelib                    |0.13.14+1.20.1      |COMMON_SET|Manifest: NOSIGNATURE         kffmod-4.10.0.jar                                 |Kotlin For Forge              |kotlinforforge                |4.10.0              |COMMON_SET|Manifest: NOSIGNATURE         flywheel-forge-1.20.1-0.6.10-7.jar                |Flywheel                      |flywheel                      |0.6.10-7            |COMMON_SET|Manifest: NOSIGNATURE         create-1.20.1-0.5.1.f.jar                         |Create                        |create                        |0.5.1.f             |COMMON_SET|Manifest: NOSIGNATURE         create_central_kitchen-1.20.1-for-create-0.5.1.f-1|Create: Central Kitchen       |create_central_kitchen        |1.3.10              |COMMON_SET|Manifest: NOSIGNATURE         create-stuff-additions1.20.1_v2.0.4a.jar          |Create Stuff & Additions      |create_sa                     |2.0.4.              |COMMON_SET|Manifest: NOSIGNATURE         polymorph-forge-0.49.2+1.20.1.jar                 |Polymorph                     |polymorph                     |0.49.2+1.20.1       |COMMON_SET|Manifest: NOSIGNATURE         JustEnoughProfessions-forge-1.20.1-3.0.1.jar      |Just Enough Professions (JEP) |justenoughprofessions         |3.0.1               |COMMON_SET|Manifest: NOSIGNATURE         storagedrawers-1.20.1-12.0.2.jar                  |Storage Drawers               |storagedrawers                |12.0.2              |COMMON_SET|Manifest: NOSIGNATURE         immersive_paintings-0.6.7+1.20.1-forge.jar        |Immersive Paintings           |immersive_paintings           |0.6.7+1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         redirector-1.20.1-4.4.0-forge.jar                 |Redirector                    |redirector                    |1.20.1-4.4.0        |COMMON_SET|Manifest: NOSIGNATURE         canary-mc1.20.1-0.2.10.jar                        |Canary                        |canary                        |0.2.10              |COMMON_SET|Manifest: NOSIGNATURE         XaeroPlus-Forge-1.20.1-59-WM1.37.2-MM23.9.3.jar   |XaeroPlus                     |xaeroplus                     |1.20.1              |COMMON_SET|Manifest: NOSIGNATURE         XaerosWorldMap_1.37.2_Forge_1.20.jar              |Xaero's World Map             |xaeroworldmap                 |1.37.2              |COMMON_SET|Manifest: NOSIGNATURE         Xaeros_Minimap_23.9.3_Forge_1.20.jar              |Xaero's Minimap               |xaerominimap                  |23.9.3              |COMMON_SET|Manifest: NOSIGNATURE         ImmediatelyFast-Forge-1.2.8+1.20.4.jar            |ImmediatelyFast               |immediatelyfast               |1.2.8+1.20.4        |COMMON_SET|Manifest: NOSIGNATURE         appleskin-forge-mc1.20.1-2.5.1.jar                |AppleSkin                     |appleskin                     |2.5.1+mc1.20.1      |COMMON_SET|Manifest: NOSIGNATURE         lootr-1.20-0.7.30.73.jar                          |Lootr                         |lootr                         |0.7.29.68           |COMMON_SET|Manifest: NOSIGNATURE         ferritecore-6.0.1-forge.jar                       |Ferrite Core                  |ferritecore                   |6.0.1               |COMMON_SET|Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a         EffectTooltips-Forge-1.20.1-9.0.2.jar             |EffectTooltips                |effecttooltips                |9.0.2               |COMMON_SET|Manifest: NOSIGNATURE         PuzzlesLib-v8.1.11-1.20.1-Forge.jar               |Puzzles Lib                   |puzzleslib                    |8.1.11              |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         gjeb-forge-1.20.1-1.3.0.32.jar                    |GJEB (GammaJustExtremeBright) |gjeb                          |1.3.0.32            |COMMON_SET|Manifest: f4:a6:0b:ee:cb:8a:1a:ea:9f:9d:45:91:8f:8b:b3:ae:26:f3:bf:05:86:1d:90:9e:f6:32:2a:1a:ed:1d:ce:b0         cosmeticarmorreworked-1.20.1-v1a.jar              |CosmeticArmorReworked         |cosmeticarmorreworked         |1.20.1-v1a          |COMMON_SET|Manifest: 5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53         chunksending-1.20.1-2.8.jar                       |chunksending mod              |chunksending                  |1.20.1-2.8          |COMMON_SET|Manifest: NOSIGNATURE         create_enchantment_industry-1.20.1-for-create-0.5.|Create Enchantment Industry   |create_enchantment_industry   |1.2.7.h             |COMMON_SET|Manifest: NOSIGNATURE         deuf-1.20.1-1.3.jar                               |DEUF - Duplicate Entity UUID F|deuf                          |1.20.1-1.3          |COMMON_SET|Manifest: NOSIGNATURE     Crash Report UUID: c58237c8-cc45-4672-a48a-9c6384c39451     Flywheel Backend: Uninitialized     FML: 47.2     Forge: net.minecraftforge:47.2.0
  • Topics

×
×
  • Create New...

Important Information

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