Jump to content

Recommended Posts

Posted

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)

Posted

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)

Posted

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

 

Posted

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)

Posted
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 =)

Posted
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.

Posted
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.

Posted (edited)
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)

Posted
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.

Posted

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)

Posted
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.

Posted

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.

 

Posted

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)

Posted (edited)

@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)

Posted
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

Posted (edited)

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)

Posted (edited)

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)

Posted
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. :-)

Posted (edited)
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)

Posted
2 minutes ago, Cadiboo said:

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

Tomorrow I'll try do a completely clean project starting all over, then return if anything is different or not =)

Posted (edited)

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)

Posted

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)

Posted

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.

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

    • If there is no such folder, then it refers to another issue   Create a new world with the same settings - then copy level.dat level.dat_old and session.lock from the new world to the broken one Delete the new world and test the broken one again    
    • You are using create 6.0.6 So one or more create addons are not compatible with it Remove all Create addons and test it again If this works, add the addons one by one If not, add the new crash-report       Add crash-reports with sites like https://mclo.gs/  
    • This is the main problem area, however I've already updated my graphics drivers [09:55:10] [main/WARN]: Mod file C:\Users\raypr\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.0\fmlcore-1.20.1-47.4.0.jar is missing mods.toml file [09:55:10] [main/WARN]: Mod file C:\Users\raypr\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.0\javafmllanguage-1.20.1-47.4.0.jar is missing mods.toml file [09:55:10] [main/WARN]: Mod file C:\Users\raypr\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.0\lowcodelanguage-1.20.1-47.4.0.jar is missing mods.toml file [09:55:10] [main/WARN]: Mod file C:\Users\raypr\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.0\mclanguage-1.20.1-47.4.0.jar is missing mods.toml file
    • [09:55:08] [main/INFO]: ModLauncher running: args [--username, RayPry, --version, forge-47.4.0, --gameDir, C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ, --assetsDir, C:\Users\raypr\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, fbb29d2614504f7d9b01434af9f7bb0e, --accessToken, ????????, --clientId, NTdlYmZmNTUtODY2ZC00NGZkLTg2NzEtZTkxMThmNmY1NmM3, --xuid, 2535429034718815, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\raypr\curseforge\minecraft\Install\quickPlay\java\1758030906375.json, --launchTarget, forgeclient, --fml.forgeVersion, 47.4.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [09:55:08] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.15 by Microsoft; OS Windows 11 arch amd64 version 10.0 [09:55:09] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [09:55:09] [main/INFO]: Trying GL version 4.6 [09:55:10] [main/INFO]: Requested GL version 4.6 got version 4.6 [09:55:10] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/raypr/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [09:55:10] [pool-2-thread-1/INFO]: GL info: NVIDIA GeForce RTX 3050 Laptop GPU/PCIe/SSE2 GL version 4.6.0 NVIDIA 581.29, NVIDIA Corporation [09:55:10] [main/INFO]: Found mod file additional_recipes-1.5.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file AE2 Tools Complement 1.20.1-1.0.4.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file alexscaves-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file alloyed-1.20.1-c6.0.0-v2.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Applied-Mekanistics-1.4.2.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file appliede-0.14.3.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file appliedenergistics2-forge-15.4.8.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file AppliedFlux-1.20-1.3.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file appliedschematicannon-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file appliedsorting-forge-1.20.1-v1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file badpackets-forge-0.4.3.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.35-all.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file biomancy-forge-1.20.1-2.8.19.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Botania-1.20.1-450-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file botarium-forge-1.20.1-2.3.4.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file caelus-forge-3.2.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file cbabo V1.1 forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file citadel-2.6.2-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file cofh_core-1.20.1-11.0.2.56.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file compressed_create_recipes-1.2.4.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file configuration-forge-1.20.1-3.1.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file copycats-3.0.2+mc.1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file cratestuff-0.1.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Create Encased-1.20.1-1.7.2-fix1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Create Quality of Life-1.20.1-1.6.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create-1.20.1-6.0.6.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Create-DnDesire-1.20.1-0.1b.Release-Early-Dev.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create-metalwork-1.20.1-1.0.11-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create-mob-spawners-1.20.1-3.1.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create-new-age-forge-1.20.1-1.1.4.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create-stuff-additions1.20.1_v2.1.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_alexscaves_compat-1.5.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_cardboarded_conveynience-1.20.1-0.0.3.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_connected-1.1.7-mc1.20.1-all.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_easy_structures-0.2-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_enchantment_industry-1.3.3-for-create-6.0.6.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_factory_logistics-1.20.1-1.4.6.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_jetpack-forge-4.4.2.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_jetpack_curios-1.2.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_kart-2.3.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_logistics-1.20.1-0.0.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_ltab-3.0.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_mecanical_extruder-1.20.1-1.6.11-6.0.6.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_mechanical_chicken-1.20.1-1.1.5-6.0.2.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_misc_and_things_ 1.20.1_4.0A.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_mobile_packages-1.20.1-0.5.5.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_netherless-1.20.1-1.3.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_optical-0.3.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_oxidized-0.1.2.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_power_loader-2.0.3-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_recycle_1.0.2_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_rustic_structures-1.0.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_sabers-1.20.1-1.3.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_security-0.1.2-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_structures_arise-162.35.34-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_ultimate_factory-2.1.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_waystones_recipes-1.0.1.b.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_wt-forge-1.20.1-1.0.7.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createaddition-1.20.1-1.3.2.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createair-1.0.5.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createappliedkinetics-1.5.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createbb-1.20.1-3.2.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createchunkloading-1.6.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createcobblestone-1.4.5+forge-1.20.1-106.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createcompounds-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createcontraptionterminals-1.20-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createdieselgenerators-1.20.1-1.3.5.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createenchantablemachinery-3.4.1+mc1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createenderlink-1.4.0+mc1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createendertransmission-2.1.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createfiltersanywhere-1.5.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createlowheated-forge-1.20.1-6.0.6-4.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createmetallurgy-0.0.7-HF-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createnewbeg-0.1.0-1.20.1-c6.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createnuclear-1.3.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createoreexcavation-1.20-1.6.4.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createrailwaysnavigator-forge-1.20.1-beta-0.8.4-C6.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createsifter-1.20.1-1.8.6-6.0.6.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createstockbridge-1.20-0.1.5.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file CreateTankDefenses v0.80.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createteleporters2.3-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createultimine-1.20.1-forge-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createutilities-0.3.2+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Crystal-Clear-2.1-Beta-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file curios-forge-5.14.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file delivery_director-1.0.1-all.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file design_decor-0.4.0b-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file dynamicvillage-v0.4-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file easy_applied_energestics_start-8.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file edible_stuff-2.1.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file embeddium-0.3.31+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file extendedgears-2.1.1-1.20.1-0.5.1.f-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file extra_gauges-1.1.2-all.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.9.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file framework-forge-1.20.1-0.7.15.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file ftb-library-forge-2001.2.10.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file ftb-quests-forge-2001.4.14.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file ftb-teams-forge-2001.3.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file ftb-ultimine-forge-2001.1.7.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file fusion-1.2.11a-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file garnished-2.1.2+1.20.1-neoforged.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.7.4.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Glodium-1.20-1.5-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file guideme-20.1.12.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file irons_spellbooks-1.20.1-3.4.0.11.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file kubejs-create-forge-2001.3.0-build.8.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file kubejs-forge-2001.6.5-build.16.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file mechanical_botany-1.0.5+1.20.1-neoforged.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Mekanism-1.20.1-10.4.16.80.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file molten_metals-1.20.1-0.1.4-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file molten_vents-1.20.1-2.0.9.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file moonlight-1.20-2.16.10-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file nocube's_create_compact_exp_1.0.4_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Patchouli-1.20.1-84.1-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file pattern_schematics-1.2.3+forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file petrolpark-1.20.1-1.4.11.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file petrolsparts-1.20.1-1.2.3-all.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file player-animation-lib-forge-1.0.2-rc1+1.20.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file ProjectE-1.20.1-PE1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file PuzzlesLib-v8.1.33-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file rechiseled-1.1.6-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file rechiseledcreate-1.0.2b-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file resourcefulconfig-forge-1.20.1-2.1.3.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file resourcefullib-forge-1.20.1-2.1.29.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file rhino-forge-2001.2.3-build.10.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file ritchiesprojectilelib-2.1.0+mc.1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file sebastrnlib-4.0.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file SmartBrainLib-forge-1.20.1-1.15.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file smartcrafter-0.2.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file sophisticatedcore-1.20.1-1.2.89.1147.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file sophisticatedstorage-1.20.1-1.4.4.1286.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Steam_Rails-1.6.7+forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file steampowered-1.20.1-3.0.2.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file supermartijn642corelib-1.1.18-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file ThinAir-v8.1.7-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file timeclock-3.0.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file toms_storage-1.20-1.7.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file tools_complement-1.20.1-4.0.0.25.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file vintageimprovements-1.20.1-0.2.0.3.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file waystones-forge-1.20.1-14.1.17.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/WARN]: Mod file C:\Users\raypr\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.0\fmlcore-1.20.1-47.4.0.jar is missing mods.toml file [09:55:10] [main/WARN]: Mod file C:\Users\raypr\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.0\javafmllanguage-1.20.1-47.4.0.jar is missing mods.toml file [09:55:10] [main/WARN]: Mod file C:\Users\raypr\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.0\lowcodelanguage-1.20.1-47.4.0.jar is missing mods.toml file [09:55:10] [main/WARN]: Mod file C:\Users\raypr\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.0\mclanguage-1.20.1-47.4.0.jar is missing mods.toml file [09:55:10] [main/INFO]: Found mod file fmlcore-1.20.1-47.4.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@344426bf [09:55:10] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@344426bf [09:55:10] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@344426bf [09:55:10] [main/INFO]: Found mod file mclanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@344426bf [09:55:10] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@344426bf [09:55:10] [main/INFO]: Found mod file forge-1.20.1-47.4.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@344426bf [09:55:11] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: architectury. Using Mod File: C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods\architectury-9.2.14-forge.jar [09:55:11] [main/INFO]: Found 18 dependencies adding them to mods collection [09:55:11] [main/INFO]: Found mod file dragonlib-forge-1.20.1-2.2.24.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file kuma-api-forge-20.1.11+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file kfflang-4.11.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file Ponder-Forge-1.20.1-1.0.80.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file Registrate-MC1.20-1.3.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file conditional-mixin-forge-0.6.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file flightlib-forge-2.1.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file puzzlesaccessapi-forge-20.1.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file mixinextras-forge-0.5.0-rc.4.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file kfflib-4.11.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file kffmod-4.11.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file create_factory_abstractions-1.20.1-1.4.6.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file flywheel-forge-1.20.1-1.0.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file bytecodecs-1.0.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file h2-mvstore-2.3.232.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file MixinExtras-0.5.0-rc.4.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:13] [main/INFO]: Compatibility level set to JAVA_17 [09:55:13] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.4.0, --gameDir, C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ, --assetsDir, C:\Users\raypr\curseforge\minecraft\Install\assets, --uuid, fbb29d2614504f7d9b01434af9f7bb0e, --username, RayPry, --assetIndex, 5, --accessToken, ????????, --clientId, NTdlYmZmNTUtODY2ZC00NGZkLTg2NzEtZTkxMThmNmY1NmM3, --xuid, 2535429034718815, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\raypr\curseforge\minecraft\Install\quickPlay\java\1758030906375.json] [09:55:13] [main/WARN]: Reference map 'mixins.create_security.refmap.json' for mixins.create_security.json could not be read. If this is a development environment you can ignore this message [09:55:13] [main/INFO]: Loaded configuration file for Embeddium: 199 options available, 0 override(s) found [09:55:13] [main/INFO]: Searching for graphics cards... [09:55:14] [main/INFO]: Found graphics card: GraphicsAdapterInfo[vendor=UNKNOWN, name=Meta Virtual Monitor, version=DriverVersion=17.12.55.198] [09:55:14] [main/INFO]: Found graphics card: GraphicsAdapterInfo[vendor=NVIDIA, name=NVIDIA GeForce RTX 3050 Laptop GPU, version=DriverVersion=32.0.15.8129] [09:55:14] [main/INFO]: Found graphics card: GraphicsAdapterInfo[vendor=INTEL, name=Intel(R) UHD Graphics, version=DriverVersion=31.0.101.4502] [09:55:14] [main/WARN]: Embeddium has applied one or more workarounds to prevent crashes or other issues on your system: [NVIDIA_THREADED_OPTIMIZATIONS] [09:55:14] [main/WARN]: This is not necessarily an issue, but it may result in certain features or optimizations being disabled. You can sometimes fix these issues by upgrading your graphics driver. [09:55:14] [main/WARN]: Reference map 'createcobblestone-common-refmap.json' for createcobblestone-common.mixins.json could not be read. If this is a development environment you can ignore this message [09:55:14] [main/WARN]: Reference map 'tfmg.refmap.json' for design_decor.mixins.json could not be read. If this is a development environment you can ignore this message [09:55:14] [main/WARN]: Reference map 'createappliedkinetics.refmap.json' for createappliedkinetics.mixins.json could not be read. If this is a development environment you can ignore this message [09:55:14] [main/WARN]: Reference map 'puzzlesaccessapi.common.refmap.json' for puzzlesaccessapi.common.mixins.json could not be read. If this is a development environment you can ignore this message [09:55:14] [main/WARN]: Reference map 'molten_metals-common-refmap.json' for molten_metals-common.mixins.json could not be read. If this is a development environment you can ignore this message [09:55:14] [main/WARN]: Reference map 'steampowered.refmap.json' for steampowered.mixins.json could not be read. If this is a development environment you can ignore this message [09:55:14] [main/WARN]: Reference map 'createcompounds.refmap.json' for createcompounds.mixins.json could not be read. If this is a development environment you can ignore this message [09:55:14] [main/WARN]: Reference map 'pattern_schematics-common-refmap.json' for pattern_schematics.common.mixins.json could not be read. If this is a development environment you can ignore this message [09:55:14] [main/INFO]: Loading 154 mods:     - additional_recipes 1.0.0     - ae2 15.4.8     - ae2_tools 1.0.4     - alexscaves 2.0.2     - alloyed 2.0+1.20.1     - appflux 1.20-1.3.2-forge     - appliede 0.14.3     - appliedschematicannon 1.0.1     - appliedsorting 1.0.0     - appmek 1.4.2     - architectury 9.2.14     - badpackets 0.4.3     - balm 7.3.35         \-- kuma_api 20.1.11     - biomancy 2.8.19.0     - botania 1.20.1-450-FORGE     - botarium 2.3.4     - caelus 3.2.0+1.20.1     - citadel 2.6.2     - cloth_config 11.1.136     - cofh_core 11.0.2     - compressed_create_recipes 1.2.4     - configuration 3.1.0     - copycats 3.0.2+mc.1.20.1-forge     - cratestuff 0.1.1     - create 6.0.6         |-- flywheel 1.0.4         \-- ponder 1.0.80     - create_alexscaves_compat 1.5.1     - create_buffers__beams_overhauled 1.0.0     - create_cardboarded_conveynience 0.0.3     - create_connected 1.1.7-mc1.20.1     - create_crush_everything 1.0.2     - create_dd 0.1b.Release-Early-Dev     - create_easy_structures 0.2     - create_enchantment_industry 1.3.3-for-create-6.0.6     - create_factory_logistics 1.4.6         \-- create_factory_abstractions 1.4.6     - create_jetpack 4.4.2         \-- flightlib 2.1.0     - create_jetpack_curios 1.2.0     - create_kart 2.3.0     - create_logistics 1.0.0     - create_ltab 3.0.0     - create_mechanical_chicken 1.20.1-1.1.5-6.0.2     - create_mechanical_extruder 1.20.1-1.6.10-6.0.6     - create_mob_spawners 3.1.0     - create_mobile_packages 0.5.5     - create_netherless 1.3.0     - create_new_age 1.1.4     - create_optical 0.3.0     - create_oxidized 0.1.2     - create_pattern_schematics 1.2.3+forge-1.20.1     - create_power_loader 2.0.3-mc1.20.1     - create_rustic_structures 1.0.0     - create_sa 2.1.0     - create_sabers 1.3.0     - create_security 0.1.2     - create_structures_arise 162.35.34     - create_tank_defenses 0.80     - create_things_and_misc 1.0.0     - create_ultimate_factory 2.1.0     - create_waystones_recipes 1.0.1.b     - create_wt 1.0.7     - createaddition 1.20.1-1.3.2     - createair 1.0.5     - createappliedkinetics 1.5.1-1.20.1     - createbb 3.1.1     - createcasing 1.7.2-fix1     - createchunkloading 1.6.0     - createcobblestone 1.4.5+forge-1.20.1-106     - createcompounds 1.0.0     - createcontraptionterminals 1.2.0     - createdieselgenerators 1.20.1-1.3.5     - createenchantablemachinery 3.4.1     - createenderlink 1.4.0     - createendertransmission 2.1.0-1.20.1     - createfiltersanywhere 1.5.0         \-- conditional_mixin 0.6.4     - createlowheated 1.20.1-6.0.6-4     - createmetallurgy 0.0.7-HF-1.20.1     - createmetalwork 1.20.1-1.0.11-forge     - createnewbeg 0.1.0-1.20.1-c6     - createnuclear 1.3.0     - createoreexcavation 1.6.4     - createqol 1.5.1-fix2     - createrailwaysnavigator 1.20.1-beta-0.8.4-C6         \-- dragonlib 1.20.1-2.2.24     - createsifter 1.20.1-1.8.6-6.0.6     - createstockbridge 0.1.5     - createteleporters 2.2     - createultimine 1.1.2     - createutilities 0.3.2+1.20.1     - crystal_clear 2.1-Beta     - curios 5.14.1+1.20.1     - delivery_director 1.0.1     - design_decor 0.4.0b     - dynamicvillage 0.4     - easy_applied_energestics_start 1.0     - edible_stuff 2.0.0     - embeddium 0.3.31+mc1.20.1         \-- rubidium 0.7.1     - extendedgears 2.1.1-1.20.1-0.5.1.f-forge     - extra_gauges 1.1.2     - farmersdelight 1.20.1-1.2.9     - forge 47.4.0     - framework 0.7.15     - ftblibrary 2001.2.10     - ftbquests 2001.4.14     - ftbteams 2001.3.1     - ftbultimine 2001.1.7     - fusion 1.2.11+a     - garnished 2.1.2     - geckolib 4.7.4     - glodium 1.20-1.5-forge     - guideme 20.1.12     - irons_spellbooks 1.20.1-3.4.0.11     - kotlinforforge 4.11.0     - kubejs 2001.6.5-build.16     - kubejs_create 2001.3.0-build.8     - mechanical_botany 1.0.5     - mekanism 10.4.16     - minecraft 1.20.1     - molten_metals 1.20.1-0.1.4     - molten_vents 2.0.9     - moonlight 1.20-2.16.10     - nocubescreateexp 1.0.4     - patchouli 1.20.1-84.1-FORGE     - petrolpark 1.4.11     - petrolsparts 1.2.3     - playeranimator 1.0.2-rc1+1.20     - projecte 1.0.1     - puzzleslib 8.1.33         \-- puzzlesaccessapi 20.1.1     - railways 1.6.7+forge-mc1.20.1     - rechiseled 1.1.6     - rechiseledcreate 1.0.2+b     - resourcefulconfig 2.1.3     - resourcefullib 2.1.29     - rhino 2001.2.3-build.10     - ritchiesprojectilelib 2.1.0     - sebastrnlib 4.0.0     - smartbrainlib 1.15     - smartcrafter 0.2.0     - sophisticatedcore 1.2.89.1147     - sophisticatedstorage 1.4.4.1286     - steampowered 1.20.1-3.0.2     - supermartijn642configlib 1.1.8     - supermartijn642corelib 1.1.18     - thinair 8.1.7     - timeclock 3.0.0     - toms_storage 1.7.1     - tools_complement 4.0.0     - vintageimprovements 1.20.1-0.2.0.3     - waystones 14.1.17
  • Topics

×
×
  • Create New...

Important Information

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