Jump to content

Recommended Posts

Posted

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

About Me

  Reveal hidden contents

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

  Reveal hidden contents

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

  Reveal hidden contents

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
  On 3/12/2018 at 1:21 PM, 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

Expand  

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
  On 3/12/2018 at 12:57 PM, Cadiboo said:

 

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

Expand  

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.

 

Expand  
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
  On 3/12/2018 at 1:05 PM, Cadiboo said:

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

Expand  

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)
  On 3/12/2018 at 5:03 PM, 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.
Expand  

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

  Reveal hidden contents

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
  On 3/12/2018 at 10:05 PM, 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.

Expand  

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

  Reveal hidden contents

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
  On 3/12/2018 at 10:22 PM, diesieben07 said:

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

Expand  

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

  Reveal hidden contents

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

  Reveal hidden contents

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
  On 3/14/2018 at 9:50 AM, 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"));
        }
   }

 

Expand  

Tried, but same result

Posted (edited)

change 

@EventBusSubscriber

to

@Mod.EventBusSubscriber
Edited by Cadiboo

About Me

  Reveal hidden contents

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

  Reveal hidden contents

 

ItemSchematicSign.java

  Reveal hidden contents


ModItems.java

  Reveal hidden contents

 

Main.java

  Reveal hidden contents

 

ModRegistry.java

  Reveal hidden contents


ClientModRegistry.java
 

  Reveal hidden contents

 

Reference.java

  Reveal hidden contents

 

 

Edited by Cadiboo

About Me

  Reveal hidden contents

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
  On 3/14/2018 at 11:10 AM, Cadiboo said:

ItemBase.java

  Reveal hidden contents

 

ItemSchematicSign.java

  Reveal hidden contents


ModItems.java

  Reveal hidden contents

 

Main.java

  Reveal hidden contents

 

ModRegistry.java

  Reveal hidden contents


ClientModRegistry.java
 

  Reveal hidden contents

 

Reference.java

  Reveal hidden contents

 

 

Expand  

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)
  On 3/14/2018 at 11:20 AM, Stenbergcsgo said:

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

Expand  

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

Edited by Cadiboo

About Me

  Reveal hidden contents

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)

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

  Reveal hidden contents

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

  Reveal hidden contents

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

    • Here is the crash report https://github.com/KingDeathClaw/Minecraft-Crash-Logs/blob/main/Crash log 4-21-2025 Honestly im not sure what happened or what else to say but please help
    • My modpack has been crashing and I am not sure why. I tried fixing the config files issues but I am not sure why it isn't working. ---- Minecraft Crash Report ---- // Hi. I'm Connector, and I'm a crashaholic ========================= SINYTRA CONNECTOR IS PRESENT! Please verify issues are not caused by Connector before reporting them to mod authors. If you're unsure, file a report on Connector's issue tracker found at https://github.com/Sinytra/Connector/issues. ========================= // Hi. I'm Minecraft, and I'm a crashaholic. Time: 2025-04-21 10:49:12 Description: Exception in server tick loop net.minecraftforge.fml.config.ConfigFileTypeHandler$ConfigLoadingException: Failed loading config file jei-server.toml of type SERVER for modid jei     at net.minecraftforge.fml.config.ConfigFileTypeHandler.lambda$reader$1(ConfigFileTypeHandler.java:47) ~[fmlcore-1.20.1-47.4.0.jar%231097!/:?] {}     at net.minecraftforge.fml.config.ConfigTracker.openConfig(ConfigTracker.java:60) ~[fmlcore-1.20.1-47.4.0.jar%231097!/:?] {}     at net.minecraftforge.fml.config.ConfigTracker.lambda$loadConfigs$1(ConfigTracker.java:50) ~[fmlcore-1.20.1-47.4.0.jar%231097!/:?] {}     at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] {re:mixin}     at java.util.Collections$SynchronizedCollection.forEach(Collections.java:2131) ~[?:?] {}     at net.minecraftforge.fml.config.ConfigTracker.loadConfigs(ConfigTracker.java:50) ~[fmlcore-1.20.1-47.4.0.jar%231097!/:?] {}     at net.minecraftforge.server.ServerLifecycleHooks.handleServerAboutToStart(ServerLifecycleHooks.java:96) ~[forge-1.20.1-47.4.0-universal.jar%231101!/:?] {re:mixin,re:classloading,pl:mixin:A}     at net.minecraft.client.server.IntegratedServer.m_7038_(IntegratedServer.java:62) ~[client-1.20.1-20230612.114412-srg.jar%231096!/:?] {re:mixin,pl:connector_pre_launch:A,pl:runtimedistcleaner:A,re:computing_frames,pl:connector_pre_launch:A,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:modernfix-common.mixins.json:perf.thread_priorities.IntegratedServerMixin from mod modernfix,pl:mixin:APP:lithostitched.mixins.json:client.IntegratedServerMixin from mod lithostitched,pl:mixin:APP:blueprint.mixins.json:client.IntegratedServerMixin from mod blueprint,pl:mixin:A,pl:connector_pre_launch:A,pl:runtimedistcleaner:A}     at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:634) ~[client-1.20.1-20230612.114412-srg.jar%231096!/:?] {re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,re:computing_frames,pl:accesstransformer:B,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin from mod modernfix,pl:mixin:APP:chunkpregen.mixins.json:common.server.MinecraftServerMixin from mod chunkpregen,pl:mixin:APP:chunkpregen.mixins.json:common.server.ServerSeedMixin from mod chunkpregen,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer from mod crafttweaker,pl:mixin:APP:fabric-message-api-v1.mixins.json:MinecraftServerMixin from mod fabric_message_api_v1,pl:mixin:APP:structureessentials.mixins.json:LevelCreatedCallback from mod structureessentials,pl:mixin:APP:fabric-resource-loader-v0.mixins.json:MinecraftServerMixin from mod fabric_resource_loader_v0,pl:mixin:APP:ichunutil.mixins.json:MinecraftServerAccessorMixin from mod ichunutil,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin from mod balm,pl:mixin:APP:eldritch_end.mixins.json:server.BiomeMixin from mod eldritch_end,pl:mixin:APP:majruszlibrary-common.mixins.json:MixinMinecraftServer from mod majruszlibrary,pl:mixin:APP:fastload.mixins.json:server.MinecraftServerMixin from mod fastload,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin from mod citadel,pl:mixin:APP:fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric_lifecycle_events_v1,pl:mixin:APP:blueprint.mixins.json:MinecraftServerMixin from mod blueprint,pl:mixin:APP:fabrication.mixins.json:_general.config.MixinMinecraftServer from mod fabrication,pl:mixin:A,pl:connector_pre_launch:A}     at net.minecraft.server.MinecraftServer.m_206580_(MinecraftServer.java:251) ~[client-1.20.1-20230612.114412-srg.jar%231096!/:?] {re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,re:computing_frames,pl:accesstransformer:B,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin from mod modernfix,pl:mixin:APP:chunkpregen.mixins.json:common.server.MinecraftServerMixin from mod chunkpregen,pl:mixin:APP:chunkpregen.mixins.json:common.server.ServerSeedMixin from mod chunkpregen,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer from mod crafttweaker,pl:mixin:APP:fabric-message-api-v1.mixins.json:MinecraftServerMixin from mod fabric_message_api_v1,pl:mixin:APP:structureessentials.mixins.json:LevelCreatedCallback from mod structureessentials,pl:mixin:APP:fabric-resource-loader-v0.mixins.json:MinecraftServerMixin from mod fabric_resource_loader_v0,pl:mixin:APP:ichunutil.mixins.json:MinecraftServerAccessorMixin from mod ichunutil,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin from mod balm,pl:mixin:APP:eldritch_end.mixins.json:server.BiomeMixin from mod eldritch_end,pl:mixin:APP:majruszlibrary-common.mixins.json:MixinMinecraftServer from mod majruszlibrary,pl:mixin:APP:fastload.mixins.json:server.MinecraftServerMixin from mod fastload,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin from mod citadel,pl:mixin:APP:fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric_lifecycle_events_v1,pl:mixin:APP:blueprint.mixins.json:MinecraftServerMixin from mod blueprint,pl:mixin:APP:fabrication.mixins.json:_general.config.MixinMinecraftServer from mod fabrication,pl:mixin:A,pl:connector_pre_launch:A}     at java.lang.Thread.run(Thread.java:833) ~[?:?] {re:mixin} Caused by: com.electronwill.nightconfig.core.io.ParsingException: Not enough data available     at com.electronwill.nightconfig.core.io.ParsingException.notEnoughData(ParsingException.java:22) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.io.ReaderInput.directReadChar(ReaderInput.java:36) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.io.AbstractInput.readChar(AbstractInput.java:49) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.io.AbstractInput.readCharsUntil(AbstractInput.java:123) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.toml.TableParser.parseKey(TableParser.java:166) ~[toml-3.6.4.jar%2394!/:?] {}     at com.electronwill.nightconfig.toml.TableParser.parseDottedKey(TableParser.java:145) ~[toml-3.6.4.jar%2394!/:?] {}     at com.electronwill.nightconfig.toml.TableParser.parseNormal(TableParser.java:55) ~[toml-3.6.4.jar%2394!/:?] {}     at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:44) ~[toml-3.6.4.jar%2394!/:?] {}     at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:37) ~[toml-3.6.4.jar%2394!/:?] {}     at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:113) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:219) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:202) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.file.WriteSyncFileConfig.load(WriteSyncFileConfig.java:73) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.file.AutosaveCommentedFileConfig.load(AutosaveCommentedFileConfig.java:85) ~[core-3.6.4.jar%2393!/:?] {}     at net.minecraftforge.fml.config.ConfigFileTypeHandler.lambda$reader$1(ConfigFileTypeHandler.java:43) ~[fmlcore-1.20.1-47.4.0.jar%231097!/:?] {}     ... 10 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details:     Minecraft Version: 1.20.1     Minecraft Version ID: 1.20.1     Operating System: Windows 11 (amd64) version 10.0     Java Version: 17.0.8, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 1154705536 bytes (1101 MiB) / 8388608000 bytes (8000 MiB) up to 8917090304 bytes (8504 MiB)     CPUs: 12     Processor Vendor: AuthenticAMD     Processor Name: AMD Ryzen 5 5600G with Radeon Graphics              Identifier: AuthenticAMD Family 25 Model 80 Stepping 0     Microarchitecture: Zen 3     Frequency (GHz): 3.89     Number of physical packages: 1     Number of physical CPUs: 6     Number of logical CPUs: 12     Graphics card #0 name: NVIDIA GeForce RTX 3060     Graphics card #0 vendor: NVIDIA (0x10de)     Graphics card #0 VRAM (MB): 4095.00     Graphics card #0 deviceId: 0x2504     Graphics card #0 versionInfo: DriverVersion=32.0.15.7602     Graphics card #1 name: AMD Radeon(TM) Graphics     Graphics card #1 vendor: Advanced Micro Devices, Inc. (0x1002)     Graphics card #1 VRAM (MB): 512.00     Graphics card #1 deviceId: 0x1638     Graphics card #1 versionInfo: DriverVersion=31.0.21910.11004     Memory slot #0 capacity (MB): 16384.00     Memory slot #0 clockSpeed (GHz): 3.20     Memory slot #0 type: DDR4     Virtual memory max (MB): 30559.30     Virtual memory used (MB): 27002.46     Swap memory total (MB): 14848.00     Swap memory used (MB): 1990.68     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx8500m -Xms256m     Server Running: true     Player Count: 0 / 8; []     Data Packs: vanilla, mod:areas, mod:connectorextras_kubejs_bridge, mod:nethers_exoticism, mod:dynamiccrosshair, mod:fabric_rendering_fluids_v1, mod:fabric_models_v0, mod:critter_lib, mod:forgeendertech, mod:modernfix (incompatible), mod:fabric_command_api_v1, mod:netherite_horse_armor (incompatible), mod:fabric_block_view_api_v2, mod:fabric_command_api_v2, mod:yungsapi, mod:mcwstairs, mod:connectorextras_rei_bridge, mod:shrink (incompatible), mod:darkutils (incompatible), mod:apotheosis (incompatible), mod:snowrealmagic (incompatible), mod:paraglider (incompatible), mod:cloth_config (incompatible), mod:sawmill (incompatible), mod:embeddium, mod:structure_gel, mod:corpse, mod:handcrafted (incompatible), mod:repurposed_structures, mod:morevillagers (incompatible), mod:gml, mod:structurecompass, mod:peacefulmoon, mod:blockrunner, mod:highlighter (incompatible), mod:curiouslanterns, mod:commongroovylibrary (incompatible), mod:advancednetherite, mod:mr_dungeons_andtaverns (incompatible), mod:attributeslib (incompatible), mod:villagersellanimals, mod:mushroomquest, mod:bettervillage, mod:chunkpregen (incompatible), mod:accessories, mod:cumulus_menus, mod:mcwroofs, mod:netherchested, mod:chimes, mod:woodenbucket, mod:itemphysic, mod:flib, mod:dynamic_fps, mod:fabric_rendering_data_attachment_v1, mod:nitrogen_internals, mod:the_bumblezone, mod:potionblender (incompatible), mod:arsdelight (incompatible), mod:krypton (incompatible), mod:l2library (incompatible), mod:nebs (incompatible), mod:mcwlights, mod:fabric_client_tags_api_v1, mod:radium, mod:kiwi (incompatible), mod:puffish_skills, mod:humancompanions (incompatible), mod:serene_shrubbery, mod:visualworkbench, mod:fabric_screen_handler_api_v1, mod:libraryferret, mod:goblintraders (incompatible), mod:realmrpg_creep, mod:alexscavesdelight, mod:kobolds, mod:immersive_weathering (incompatible), mod:libbamboo, mod:mcwholidays, mod:ags_hud_texts, mod:untamedwilds, mod:aaa_particles, mod:snowundertrees, mod:midnightlib (incompatible), mod:guideapi_vp (incompatible), mod:beefix, mod:additional_lights, mod:jeitweaker (incompatible), mod:corpsecurioscompat, mod:crafttweaker (incompatible), mod:fabric_particles_v1, mod:luminousworld, mod:ironchest, mod:dungeons_arise, mod:logprot (incompatible), mod:terrablender, mod:biomesoplenty (incompatible), mod:guardribbits (incompatible), mod:lootintegration_wda (incompatible), mod:necronomicon, mod:justenoughbreeding, mod:cleanswing (incompatible), mod:fabric_block_api_v1, mod:fabric_resource_conditions_api_v1, mod:forgeconfigapiport, mod:astikorcarts (incompatible), mod:brewinandchewin, mod:notenoughanimations, mod:farmersrespite, mod:shadowizardlib (incompatible), mod:justenoughprofessions, mod:wits (incompatible), mod:fabric_registry_sync_v0, mod:fastfurnace (incompatible), mod:tlc (incompatible), mod:moremobvariants, mod:fabric_object_builder_api_v1, mod:treasure2_undergarden_lp, mod:deep_dark_regrowth, mod:fabric_message_api_v1, mod:cosmeticarmorreworked, mod:phantasm (incompatible), mod:euphoria_patcher, mod:fruitsdelight (incompatible), mod:grapplemod (incompatible), mod:aether_enhanced_extinguishing (incompatible), mod:skyvillages (incompatible), mod:unusualfishmod (incompatible), mod:kuma_api, mod:fabric_renderer_api_v1, mod:animation_overhaul (incompatible), mod:fabric_item_api_v1, mod:illagerinvasion, mod:fireproofboats, mod:firstperson, mod:additionalbanners (incompatible), mod:sophisticatedcore (incompatible), mod:gpumemleakfix (incompatible), mod:structureessentials (incompatible), mod:villagernames, mod:elytra_physics (incompatible), mod:placebo (incompatible), mod:jumpoverfences, mod:lootintegrations (incompatible), mod:finsandtails (incompatible), mod:cobweb (incompatible), mod:bookshelf, mod:fabrication (incompatible), mod:sophisticatedbackpacks (incompatible), mod:mcwdoors, mod:medieval_buildings (incompatible), mod:bygonenether (incompatible), mod:carryon (incompatible), mod:macawsroofsbop, mod:fzzy_config (incompatible), mod:fabric_api, mod:connectorextras_modmenu_bridge, mod:konkrete (incompatible), mod:diagonalwalls, mod:diagonalblocks, mod:mcwbridges, mod:jearchaeology, mod:fabric_api_lookup_api_v1, mod:projectvibrantjourneys, mod:dogslie, mod:nocubesbettergrindstone, mod:eeeabsmobs, mod:dynamiccrosshairapi (incompatible), mod:lionfishapi (incompatible), mod:fishontheline, mod:connectorextras_architectury_bridge, mod:memorysettings (incompatible), mod:seadwellers, mod:villagertools (incompatible), mod:spartanfire, mod:connectormod, mod:spartanskies, mod:runelic, mod:starterkit, mod:bridgingmod, mod:twilightdelight (incompatible), mod:immersivelanterns, mod:aiimprovements, mod:cupboard (incompatible), mod:undergarden, mod:monolib (incompatible), mod:framework, mod:puffish_attributes, mod:whatthebucket (incompatible), mod:quarkdelight, mod:celesteconfig (incompatible), mod:dreadsteel (incompatible), mod:fabric_key_binding_api_v1, mod:fabric_transfer_api_v1, mod:bedbenefits (incompatible), mod:shrines (incompatible), mod:nourished_nether, mod:particlerain (incompatible), mod:commonnetworking (incompatible), mod:connectorextras_pehkui_bridge, mod:conjurer_illager (incompatible), mod:monster_hunter_villager, mod:fabric_resource_loader_v0, mod:obscure_api (incompatible), mod:enlightened_end, mod:illagerwarship, mod:mcwpaintings, mod:clumps (incompatible), mod:danger_close (incompatible), mod:tumbleweed (incompatible), mod:outer_end, mod:decorative_blocks, mod:aquamirae_mod_extra_music, mod:explorerscompass, mod:pineapple_delight (incompatible), mod:ichunutil, mod:txnilib, mod:azurelib, mod:connectorextras_energy_bridge, mod:usefulslime (incompatible), mod:skinlayers3d, mod:travelerstitles, mod:morezombievillagers, mod:raided, mod:friendsandfoes (incompatible), mod:nyfsspiders (incompatible), mod:tetrasdelight, mod:rubinated_nether, mod:extragore, mod:mysterious_mountain_lib (incompatible), mod:fabric_blockrenderlayer_v1, mod:amecsapi, mod:another_furniture (incompatible), mod:spidersproducewebs, mod:creativecore, mod:spartanshields, mod:bucketlib, mod:pigpen (incompatible), mod:fastbench (incompatible), mod:storagedrawers (incompatible), mod:diagonalfences, mod:miners_delight (incompatible), mod:mynethersdelight, mod:betterarcheology (incompatible), mod:fabric_biome_api_v1, mod:raised (incompatible), mod:ferritecore (incompatible), mod:enhancedcelestials, mod:corgilib, mod:dataanchor, mod:notrample, mod:justzoom (incompatible), mod:majruszsenchantments (incompatible), mod:realmrpg_quests, mod:secondchanceforge (incompatible), mod:mcwbyg, mod:addonslib, mod:supermartijn642configlib (incompatible), mod:playeranimator (incompatible), mod:combatroll (incompatible), mod:grassoverhaul (incompatible), mod:mcwwindows, mod:sound_physics_remastered (incompatible), mod:fabric_convention_tags_v1, mod:lootbeams (incompatible), mod:guardvillagers (incompatible), mod:medievalend (incompatible), mod:treasure2_twilight_forest_lp, mod:farmersdelightcompat, mod:fcbop, mod:balm, mod:fabric_screen_api_v1, mod:dynview (incompatible), mod:immersive_armors (incompatible), mod:jeresources, mod:ctov, mod:vminus, mod:athena, mod:connectorextras_terrablender_bridge, mod:vintagedelight, mod:fabric_game_rule_api_v1, mod:toolstats (incompatible), mod:w2pets (incompatible), mod:ironfurnaces, mod:unusualend, mod:supermartijn642corelib, mod:yungsbridges, mod:resourcefulconfig (incompatible), mod:enchantmenttransfer, mod:mr_tidal_towns, mod:mysticaloaktree (incompatible), mod:curios (incompatible), mod:desert_mining, mod:searchables (incompatible), mod:eldritch_end, mod:measurements, mod:fabric_entity_events_v1, mod:sapience (incompatible), mod:mcwfurnitures, mod:apothiccurios (incompatible), mod:mountedpearl (incompatible), mod:mace_backport, mod:hasteenchantment, mod:adchimneys, mod:jadeaddons (incompatible), mod:majruszlibrary (incompatible), mod:darkpaintings (incompatible), mod:mcwabnormals, mod:waterdripsound (incompatible), mod:fabric_dimensions_v1, mod:betteranimationscollection, mod:mowziesmobs, mod:fastload, mod:puzzlesapi, mod:formationsnether, mod:rpghud (incompatible), mod:fabric_model_loading_api_v1, mod:lithostitched, mod:stoneworks, mod:fabric_rendering_v1, mod:fabric_renderer_indigo, mod:fallingleaves, mod:apotheotic_additions, mod:naturescompass, mod:smarterfarmers (incompatible), mod:jumpboat, mod:catjammies, mod:glitchcore (incompatible), mod:sereneseasons, mod:connectorextras_geckolib_fabric_compat, mod:table_top_craft, mod:dismountentity, mod:speed_enchantment, mod:formations, mod:aetherdelight, mod:puzzlesaccessapi, mod:dungeons_arise_seven_seas, mod:more_wandering_trades, mod:chalk (incompatible), mod:zombiemoon, mod:mcwpaths, mod:wither_spawn_animation, mod:fabric_api_base, mod:mousetweaks, mod:easier_sleeping, mod:cubes_without_borders (incompatible), mod:ohthetreesyoullgrow, mod:spectrelib (incompatible), mod:connectorextras_jei_bridge, mod:kotlinforforge (incompatible), mod:ecologics, mod:fabric_item_group_api_v1, mod:imfast, mod:polymorph (incompatible), mod:entityculling, mod:oceansdelight (incompatible), mod:fabric_recipe_api_v1, mod:visuality (incompatible), mod:ubesdelight, mod:puzzleslib, mod:friendlyfire (incompatible), mod:fabric_sound_api_v1, mod:explosiveenhancement, mod:chunksending (incompatible), mod:aquamirae (incompatible), mod:xpbook, mod:cristellib (incompatible), mod:carbonconfig (incompatible), mod:tetra (incompatible), mod:undergardenpatch, mod:tetranomicon, mod:treechop (incompatible), mod:tropicraft, mod:blue_skies (incompatible), mod:dimasctetracompat (incompatible), mod:geckolib, mod:biomeswevegone, mod:creeperoverhaul, mod:ars_nouveau (incompatible), mod:crittersandcompanions (incompatible), mod:aether, mod:aetheric_tetranomicon, mod:lost_aether_content, mod:deep_aether, mod:aeroblender (incompatible), mod:ancient_aether, mod:naturalist (incompatible), mod:soulbound (incompatible), mod:dynamiclights (incompatible), mod:netheroverhaul, mod:horseexpert, mod:paperdoll, mod:golemsarefriends (incompatible), mod:controlling (incompatible), mod:citadel (incompatible), mod:rats, mod:alexsmobs (incompatible), mod:iceandfire, mod:forge, mod:auroras, mod:appleskin (incompatible), mod:akashictome (incompatible), mod:dragonseeker, mod:zeta (incompatible), mod:aquaculture, mod:fabric_data_attachment_api_v1, mod:mixinextras (incompatible), mod:aether_villages, mod:endercrop (incompatible), mod:storagedelight, mod:twigs (incompatible), mod:minersmoon, mod:waddles, mod:jeed (incompatible), mod:hauntedharvest (incompatible), mod:dummmmmmy (incompatible), mod:fabric_content_registries_v0, mod:twilightforest, mod:sodiumdynamiclights, mod:better_climbing (incompatible), mod:farmersdelight, mod:corn_delight (incompatible), mod:largemeals, mod:ends_delight, mod:chefsdelight (incompatible), mod:culturaldelights, mod:curious_armor_stands, mod:endersdelight, mod:treasure2, mod:gottschcore, mod:mcwfences, mod:spartanundergarden, mod:reach_entity_attributes, mod:medievalmusic (incompatible), mod:villagespawnpoint, mod:spartantoolkit, mod:patchouli (incompatible), mod:collective, mod:betterthirdperson, mod:resourcefullib (incompatible), mod:eatinganimation (incompatible), mod:spartanweaponry, mod:seasonhud (incompatible), mod:deeperdarker, mod:architectury (incompatible), mod:bambooeverything (incompatible), mod:doapi (incompatible), mod:jecalculation, mod:findme (incompatible), mod:brewery (incompatible), mod:meadow, mod:jei, mod:jamlib, mod:rightclickharvest, mod:fabric_loot_api_v2, mod:connectorextras, mod:umbral_skies (incompatible), mod:refurbished_furniture, mod:fabric_networking_api_v1, mod:fabric_lifecycle_events_v1, mod:tradingpost, mod:villagesandpillages (incompatible), mod:rhino (incompatible), mod:festive_delight, mod:jmi (incompatible), mod:amendments (incompatible), mod:blueflame (incompatible), mod:additionallanterns (incompatible), mod:rainbows, mod:waystones, mod:journeymap (incompatible), mod:comforts (incompatible), mod:fabric_mining_level_api_v1, mod:configured (incompatible), mod:default_skill_trees (incompatible), mod:betterdeserttemples, mod:mapperbase (incompatible), mod:netherdepthsupgrade (incompatible), mod:blueprint, mod:savage_and_ravage (incompatible), mod:clayworks, mod:personality, mod:autumnity (incompatible), mod:environmental (incompatible), mod:buzzier_bees (incompatible), mod:coffee_delight (incompatible), mod:moredelight (incompatible), mod:spartantwilight, mod:ramadandelight, mod:libertyvillagers (incompatible), mod:fasterladderclimbing (incompatible), mod:fabric_transitive_access_wideners_v1, mod:zillagersweararmor (incompatible), mod:dtkupd, mod:cofh_core, mod:endergetic (incompatible), mod:commonality, mod:farmers_structures, mod:ls_spooky_paintings, mod:dramaticdoors, mod:archers_paradox, mod:abnormals_delight, mod:aquaculturedelight, mod:upgrade_aquatic (incompatible), mod:aquamirae_delight, mod:undergardendelight, mod:ensorcellation, mod:alexscaves, mod:pumpeddesertremake, mod:enchdesc (incompatible), mod:radiantgear (incompatible), mod:moonlight (incompatible), mod:toolbelt (incompatible), mod:mr_farmers_cuttingohthebiomeswevegone, mod:mixinsquared (incompatible), mod:jade (incompatible), mod:snowyspirit (incompatible), mod:l2harvester (incompatible), mod:displaydelight, mod:nethersdelight, mod:lootintegrations_yungs (incompatible), mod:rocks, mod:barteringstation, mod:ribbits (incompatible), mod:iceberg (incompatible), mod:quark (incompatible), mod:supplementaries, mod:delightful, mod:suppsquared (incompatible), mod:woodworks (incompatible), mod:mutil, mod:brutalbosses (incompatible), mod:legendarycreatures, mod:inventoryhud (incompatible), mod:universalenchants, mod:bettertridents, mod:alexsdelight, mod:yet_another_config_lib_v3 (incompatible), mod:apexcore, mod:fantasyfurniture, mod:crabbersdelight, mod:connectorextras_emi_bridge, mod:healingcampfire, mod:fabric_data_generation_api_v1, mod:fabric_events_interaction_v0, mod:presencefootsteps (incompatible), Immersive Weathering Generated Pack, Sawmill Sawmill Recipes, Snowyspirit Generated Pack, Supplementaries Generated Pack, Suppsquared Generated Pack, builtin/aether_curios_override, builtin/aether_ruined_portal, builtin/aether_temporary_freezing, builtin/ancient_aether_worldgen_overrides, builtin/compat_recipes/aether_lost_content_compat, builtin/compat_recipes/ancient_aether_compat, builtin/compatibility/deep_aether, builtin/compatibility/lost_aether_content, builtin/extinguishing_recipe_override, fabric, lithostitched/breaks_seed_parity, rubinated_nether/better_netherite_template, mod:loot_journal (incompatible), mod:obscure_tooltips (incompatible)     Enabled Feature Flags: minecraft:vanilla     World Generation: Stable     Type: Integrated Server (map_client.txt)     Is Modded: Definitely; Client brand changed to 'forge'; Server brand changed to 'forge'     Launched Version: forge-47.4.0     Sinytra Connector: 1.0.0-beta.46+1.20.1         SINYTRA CONNECTOR IS PRESENT!         Please verify issues are not caused by Connector before reporting them to mod authors. If you're unsure, file a report on Connector's issue tracker.         Connector's issue tracker can be found at https://github.com/Sinytra/Connector/issues.         Installed Fabric mods:         | ================================================== | ============================== | ============================== | ==================== |         | Eldritch_End-FORGE-MC1.20.1-0.3.3$aaa-particles-1. | AAAParticles                   | aaa_particles                  | 1.20.1-1.4.5         |         | Eldritch_End-FORGE-MC1.20.1-0.3.3_mapped_srg_1.20. | Eldritch End                   | eldritch_end                   | 0.3.3                |     ModLauncher: 10.0.9+10.0.9+main.dcd20f30     ModLauncher launch target: forgeclient     ModLauncher naming: srg     ModLauncher services:          mixin-0.8.5.jar mixin PLUGINSERVICE          eventbus-6.0.5.jar eventbus PLUGINSERVICE          fmlloader-1.20.1-47.4.0.jar slf4jfixer PLUGINSERVICE          fmlloader-1.20.1-47.4.0.jar object_holder_definalize PLUGINSERVICE          fmlloader-1.20.1-47.4.0.jar runtime_enum_extender PLUGINSERVICE          fmlloader-1.20.1-47.4.0.jar capability_token_subclass PLUGINSERVICE          accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE          fmlloader-1.20.1-47.4.0.jar runtimedistcleaner PLUGINSERVICE          modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar mixin-transmogrifier TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar connector_loader TRANSFORMATIONSERVICE      FML Language Providers:          javafml@null         lowcodefml@null         minecraft@1.0         gml@4.0.11         kotlinforforge@4.11.0     Mod List:          areas-1.20.1-6.1.jar                              |Areas                         |areas                         |6.1                 |DONE      |Manifest: NOSIGNATURE         kubejs-bridge-1.11.2+1.20.1.jar                   |Connector Extras KubeJS Bridge|connectorextras_kubejs_bridge |1.11.2+1.20.1       |DONE      |Manifest: NOSIGNATURE         nether-s-exoticism-1.20.1-1.2.9.jar               |Nether's Exoticism            |nethers_exoticism             |1.2.9               |DONE      |Manifest: NOSIGNATURE         dynamiccrosshair-9.3+1.20.1-forge.jar             |Dynamic Crosshair             |dynamiccrosshair              |9.3                 |DONE      |Manifest: NOSIGNATURE         fabric-rendering-fluids-v1-3.0.28+4ac5e37a77.jar  |Fabric Rendering Fluids (v1)  |fabric_rendering_fluids_v1    |3.0.28+4ac5e37a77   |DONE      |Manifest: NOSIGNATURE         fabric-models-v0-0.4.2+7c3892a477.jar             |Fabric Models (v0)            |fabric_models_v0              |0.4.2+7c3892a477    |DONE      |Manifest: NOSIGNATURE         critter-forge-0.1-beta.14.jar                     |Critter Library               |critter_lib                   |0.1-beta.14         |DONE      |Manifest: NOSIGNATURE         ForgeEndertech-1.20.1-11.1.6.0-build.0980.jar     |ForgeEndertech                |forgeendertech                |11.1.6.0            |DONE      |Manifest: NOSIGNATURE         modernfix-forge-5.21.0+mc1.20.1.jar               |ModernFix                     |modernfix                     |5.21.0+mc1.20.1     |DONE      |Manifest: NOSIGNATURE         fabric-command-api-v1-1.2.34+f71b366f77.jar       |Fabric Command API (v1)       |fabric_command_api_v1         |1.2.34+f71b366f77   |DONE      |Manifest: NOSIGNATURE         netherite_horse_armor-forge-1.20.1-1.0.4.jar      |Netherite Horse Armor         |netherite_horse_armor         |1.20.1-1.0.4        |DONE      |Manifest: NOSIGNATURE         fabric-block-view-api-v2-1.0.1+0767707077.jar     |Fabric BlockView API (v2)     |fabric_block_view_api_v2      |1.0.1+0767707077    |DONE      |Manifest: NOSIGNATURE         fabric-command-api-v2-2.2.13+561530ec77.jar       |Fabric Command API (v2)       |fabric_command_api_v2         |2.2.13+561530ec77   |DONE      |Manifest: NOSIGNATURE         YungsApi-1.20-Forge-4.0.6.jar                     |YUNG's API                    |yungsapi                      |1.20-Forge-4.0.6    |DONE      |Manifest: NOSIGNATURE         mcw-stairs-1.0.1-1.20.1forge.jar                  |Macaw's Stairs and Balconies  |mcwstairs                     |1.0.1               |DONE      |Manifest: NOSIGNATURE         rei-bridge-1.11.2+1.20.1.jar                      |Connector Extras REI Bridge   |connectorextras_rei_bridge    |1.11.2+1.20.1       |DONE      |Manifest: NOSIGNATURE         Shrink-1.20.1-1.4.5.jar                           |Shrink                        |shrink                        |1.4.5               |DONE      |Manifest: NOSIGNATURE         DarkUtilities-Forge-1.20.1-17.0.5.jar             |DarkUtilities                 |darkutils                     |17.0.5              |DONE      |Manifest: NOSIGNATURE         Apotheosis-1.20.1-7.4.7.jar                       |Apotheosis                    |apotheosis                    |7.4.7               |DONE      |Manifest: NOSIGNATURE         SnowRealMagic-1.20.1-Forge-10.5.2.jar             |Snow! Real Magic!             |snowrealmagic                 |10.5.2              |DONE      |Manifest: NOSIGNATURE         Paraglider-forge-20.1.3.jar                       |Paraglider                    |paraglider                    |20.1.3              |DONE      |Manifest: NOSIGNATURE         cloth-config-11.1.136-forge.jar                   |Cloth Config v10 API          |cloth_config                  |11.1.136            |DONE      |Manifest: NOSIGNATURE         sawmill-1.20-1.4.6.jar                            |Universal Sawmill             |sawmill                       |1.20-1.4.6          |DONE      |Manifest: NOSIGNATURE         embeddium-0.3.31+mc1.20.1.jar                     |Embeddium                     |embeddium                     |0.3.31+mc1.20.1     |DONE      |Manifest: NOSIGNATURE         structure_gel-1.20.1-2.16.2.jar                   |Structure Gel API             |structure_gel                 |2.16.2              |DONE      |Manifest: NOSIGNATURE         corpse-forge-1.20.1-1.0.20.jar                    |Corpse                        |corpse                        |1.20.1-1.0.20       |DONE      |Manifest: NOSIGNATURE         handcrafted-forge-1.20.1-3.0.6.jar                |Handcrafted                   |handcrafted                   |3.0.6               |DONE      |Manifest: NOSIGNATURE         repurposed_structures-7.1.15+1.20.1-forge.jar     |Repurposed Structures         |repurposed_structures         |7.1.15+1.20.1-forge |DONE      |Manifest: NOSIGNATURE         morevillagers-forge-1.20.1-5.0.0.jar              |More Villagers                |morevillagers                 |5.0.0               |DONE      |Manifest: NOSIGNATURE         mod-4.0.11.jar                                    |GroovyModLoader               |gml                           |4.0.11              |DONE      |Manifest: NOSIGNATURE         loot_journal-forge-1.20.1-4.0.2.jar               |Loot Journal                  |loot_journal                  |4.0.2               |DONE      |Manifest: NOSIGNATURE         StructureCompass-1.20.1-2.1.0.jar                 |Structure Compass Mod         |structurecompass              |2.1.0               |DONE      |Manifest: NOSIGNATURE         PeacefulMoon-1.20.jar                             |Peaceful Moon                 |peacefulmoon                  |1.20                |DONE      |Manifest: NOSIGNATURE         BlockRunner-v8.0.4-1.20.1-Forge.jar               |Block Runner                  |blockrunner                   |8.0.4               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         Highlighter-1.20.1-forge-1.1.9.jar                |Highlighter                   |highlighter                   |1.1.9               |DONE      |Manifest: NOSIGNATURE         curiouslanterns-1.20.1-1.3.6.jar                  |Curious Lanterns              |curiouslanterns               |1.20.1-1.3.6        |DONE      |Manifest: NOSIGNATURE         cgl-1.20-forge-0.3.3.jar                          |CommonGroovyLibrary           |commongroovylibrary           |0.3.3               |DONE      |Manifest: NOSIGNATURE         advancednetherite-forge-2.1.3-1.20.1.jar          |Advanced Netherite            |advancednetherite             |2.1.3               |DONE      |Manifest: NOSIGNATURE         dungeons-and-taverns-3.0.3.f[Forge].jar           |Dungeons and Taverns          |mr_dungeons_andtaverns        |3.0.3.f             |DONE      |Manifest: NOSIGNATURE         ApothicAttributes-1.20.1-1.3.7.jar                |Apothic Attributes            |attributeslib                 |1.3.7               |DONE      |Manifest: NOSIGNATURE         nocube's_villagers_sell_animals_1.2.1_forge_1.20.1|Villagers Sell Animals (by NoC|villagersellanimals           |1.2.1               |DONE      |Manifest: NOSIGNATURE         MushroomQuest-1.20.1-v4.1.2.jar                   |Mushroom Quest                |mushroomquest                 |4.0.0               |DONE      |Manifest: NOSIGNATURE         bettervillage-forge-1.20.1-3.3.0-all.jar          |Better village                |bettervillage                 |3.3.0               |DONE      |Manifest: NOSIGNATURE         Chunk-Pregenerator-1.20-4.4.4.jar                 |Chunk Pregenerator            |chunkpregen                   |1.20-4.4.4          |DONE      |Manifest: NOSIGNATURE         accessories-neoforge-1.0.0-beta.46+1.20.1.jar     |Accessories                   |accessories                   |1.0.0-beta46+1.20.1 |DONE      |Manifest: NOSIGNATURE         cumulus_menus-1.20.1-1.0.1-neoforge.jar           |Cumulus                       |cumulus_menus                 |1.20.1-1.0.1-neoforg|DONE      |Manifest: NOSIGNATURE         mcw-roofs-2.3.1-mc1.20.1forge.jar                 |Macaw's Roofs                 |mcwroofs                      |2.3.1               |DONE      |Manifest: NOSIGNATURE         NetherChested-v8.0.4-1.20.1-Forge.jar             |Nether Chested                |netherchested                 |8.0.4               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         Chimes-v2.0.1-1.20.1.jar                          |Chimes                        |chimes                        |2.0.1               |DONE      |Manifest: NOSIGNATURE         woodenbucket-1.20.1-2.1.0.0.jar                   |Wooden Bucket                 |woodenbucket                  |1.20.1-2.1.0.0      |DONE      |Manifest: NOSIGNATURE         ItemPhysic_FORGE_v1.8.6_mc1.20.1.jar              |ItemPhysic                    |itemphysic                    |1.8.6               |DONE      |Manifest: NOSIGNATURE         flib-1.20.1-0.0.15.jar                            |flib                          |flib                          |0.0.15              |DONE      |Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed         dynamic-fps-3.9.3+minecraft-1.20.0-forge.jar      |Dynamic FPS                   |dynamic_fps                   |3.9.3               |DONE      |Manifest: NOSIGNATURE         fabric-rendering-data-attachment-v1-0.3.37+a6081af|Fabric Rendering Data Attachme|fabric_rendering_data_attachme|0.3.37+a6081afc77   |DONE      |Manifest: NOSIGNATURE         nitrogen_internals-1.20.1-1.0.12-neoforge.jar     |Nitrogen                      |nitrogen_internals            |1.20.1-1.0.12-neofor|DONE      |Manifest: NOSIGNATURE         the_bumblezone-7.6.12+1.20.1-forge.jar            |The Bumblezone                |the_bumblezone                |7.6.12+1.20.1-forge |DONE      |Manifest: NOSIGNATURE         Potion-Blender-1.20.1-FORGE-3.1.2.jar             |Potion-Blender                |potionblender                 |3.1.2               |DONE      |Manifest: NOSIGNATURE         arsdelight-1.1.4.jar                              |Ars Nouveau's Flavors & Deligh|arsdelight                    |1.1.4               |DONE      |Manifest: NOSIGNATURE         KryptonReforged-0.2.3.jar                         |Krypton Reforged              |krypton                       |0.2.3               |DONE      |Manifest: NOSIGNATURE         l2library-2.5.1-slim.jar                          |L2 Library                    |l2library                     |2.5.1               |DONE      |Manifest: NOSIGNATURE         NekosEnchantedBooks-1.19.3-2.0.3.jar              |Neko's Enchanted Books        |nebs                          |2.0.3               |DONE      |Manifest: NOSIGNATURE         mcw-lights-1.1.0-mc1.20.1forge.jar                |Macaw's Lights and Lamps      |mcwlights                     |1.1.0               |DONE      |Manifest: NOSIGNATURE         fabric-client-tags-api-v1-1.1.2+5d6761b877.jar    |Fabric Client Tags            |fabric_client_tags_api_v1     |1.1.2+5d6761b877    |DONE      |Manifest: NOSIGNATURE         radium-mc1.20.1-0.12.4+git.26c9d8e.jar            |Radium                        |radium                        |0.12.4+git.26c9d8e  |DONE      |Manifest: NOSIGNATURE         Kiwi-1.20.1-Forge-11.8.29.jar                     |Kiwi Library                  |kiwi                          |11.8.29+forge       |DONE      |Manifest: NOSIGNATURE         puffish_skills-0.15.4-1.20-forge.jar              |Pufferfish's Skills           |puffish_skills                |0.15.4              |DONE      |Manifest: NOSIGNATURE         humancompanions-1.20.1-1.7.6.jar                  |Human Companions              |humancompanions               |1.20.1-1.7.6        |DONE      |Manifest: NOSIGNATURE         SereneShrubbery-1.20.1-v2.1.0.jar                 |Serene Shrubbery              |serene_shrubbery              |1.2.0               |DONE      |Manifest: NOSIGNATURE         VisualWorkbench-v8.0.0-1.20.1-Forge.jar           |Visual Workbench              |visualworkbench               |8.0.0               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         fabric-screen-handler-api-v1-1.3.30+561530ec77.jar|Fabric Screen Handler API (v1)|fabric_screen_handler_api_v1  |1.3.30+561530ec77   |DONE      |Manifest: NOSIGNATURE         libraryferret-forge-1.20.1-4.0.0.jar              |Library ferret                |libraryferret                 |4.0.0               |DONE      |Manifest: NOSIGNATURE         goblintraders-forge-1.20.1-1.9.3.jar              |Goblin Traders                |goblintraders                 |1.9.3               |DONE      |Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         realmrpg_creep_and_crop_1.0.2_forge_1.20.1.jar    |Realm RPG: Creep & Crop       |realmrpg_creep                |1.0.2               |DONE      |Manifest: NOSIGNATURE         alexscavesdelight-1.0.26-1.20.1.jar               |Alex's Caves Delight          |alexscavesdelight             |1.0.26-1.20.1       |DONE      |Manifest: NOSIGNATURE         Kobolds-2.12.0.jar                                |Kobolds                       |kobolds                       |2.12.0              |DONE      |Manifest: NOSIGNATURE         immersive_weathering-1.20.1-2.0.5-forge.jar       |Immersive Weathering          |immersive_weathering          |1.20.1-2.0.5        |DONE      |Manifest: NOSIGNATURE         libbamboo-2.2+1.20.1-forge.jar                    |LibBamboo                     |libbamboo                     |2.2                 |DONE      |Manifest: NOSIGNATURE         mcw-holidays-1.1.0-mc1.20.1forge.jar              |Macaw's Holidays              |mcwholidays                   |1.1.0               |DONE      |Manifest: NOSIGNATURE         hud_texts_v3.2_1.20.1_[FORGE].jar                 |Hud Texts                     |ags_hud_texts                 |3.2                 |DONE      |Manifest: NOSIGNATURE         untamedwilds-1.20.1-4.0.4.jar                     |Untamed Wilds                 |untamedwilds                  |4.0.4               |DONE      |Manifest: NOSIGNATURE         Eldritch_End-FORGE-MC1.20.1-0.3.3$aaa-particles-1.|AAAParticles                  |aaa_particles                 |1.20.1-1.4.5        |DONE      |Manifest: NOSIGNATURE         snowundertrees-1.20.1-1.4.10.jar                  |Snow Under Trees              |snowundertrees                |1.4.10              |DONE      |Manifest: NOSIGNATURE         midnightlib-1.4.2-forge.jar                       |MidnightLib                   |midnightlib                   |1.4.2               |DONE      |Manifest: NOSIGNATURE         Guide-API-VP-1.20.1-2.2.6.jar                     |Guide-API VP                  |guideapi_vp                   |2.2.6               |DONE      |Manifest: NOSIGNATURE         BeeFix-1.20-1.0.7.jar                             |Bee Fix                       |beefix                        |1.0.7               |DONE      |Manifest: NOSIGNATURE         additional_lights-1.20.1-2.1.7.jar                |Additional Lights             |additional_lights             |2.1.7               |DONE      |Manifest: NOSIGNATURE         JeiTweaker-forge-1.20.1-8.0.6.jar                 |JeiTweaker                    |jeitweaker                    |8.0.6               |DONE      |Manifest: NOSIGNATURE         corpsecurioscompat-1.18.x-1.20.x-Forge-2.2.2.jar  |corpsecurioscompat            |corpsecurioscompat            |2.2.2               |DONE      |Manifest: NOSIGNATURE         CraftTweaker-forge-1.20.1-14.0.57.jar             |CraftTweaker                  |crafttweaker                  |14.0.57             |DONE      |Manifest: NOSIGNATURE         fabric-particles-v1-1.1.2+78e1ecb877.jar          |Fabric Particles (v1)         |fabric_particles_v1           |1.1.2+78e1ecb877    |DONE      |Manifest: NOSIGNATURE         Luminous V1.4.9 - Forge 1.20.1.jar                |Luminous                      |luminousworld                 |1.4.9               |DONE      |Manifest: NOSIGNATURE         ironchest-1.20.1-14.4.4.jar                       |Iron Chests                   |ironchest                     |1.20.1-14.4.4       |DONE      |Manifest: NOSIGNATURE         DungeonsArise-1.20.x-2.1.58-release.jar           |When Dungeons Arise           |dungeons_arise                |2.1.58-1.20.x       |DONE      |Manifest: NOSIGNATURE         logprot-1.20.1-3.5.jar                            |Logprot                       |logprot                       |1.4                 |DONE      |Manifest: NOSIGNATURE         TerraBlender-forge-1.20.1-3.0.1.10.jar            |TerraBlender                  |terrablender                  |3.0.1.10            |DONE      |Manifest: NOSIGNATURE         BiomesOPlenty-1.20.1-18.0.0.592.jar               |Biomes O' Plenty              |biomesoplenty                 |18.0.0.592          |DONE      |Manifest: NOSIGNATURE         GuardRibbits-1.20.1-Forge-1.0.7.jar               |Guard Ribbits                 |guardribbits                  |1.20.1-Forge-1.0.7  |DONE      |Manifest: NOSIGNATURE         lootintegration_wda-1.6.jar                       |lootintegration_wda mod       |lootintegration_wda           |1                   |DONE      |Manifest: NOSIGNATURE         Necronomicon-Forge-1.6.0+1.20.1.jar               |Necronomicon                  |necronomicon                  |1.6.0               |DONE      |Manifest: NOSIGNATURE         justenoughbreeding-forge-1.20-1.20.1-1.5.0.jar    |Just Enough Breeding          |justenoughbreeding            |1.5.0               |DONE      |Manifest: NOSIGNATURE         cleanswing-1.20-1.8.jar                           |Clean Swing Through Grass     |cleanswing                    |1.8                 |DONE      |Manifest: NOSIGNATURE         fabric-block-api-v1-1.0.11+0e6cb7f777.jar         |Fabric Block API (v1)         |fabric_block_api_v1           |1.0.11+0e6cb7f777   |DONE      |Manifest: NOSIGNATURE         fabric-resource-conditions-api-v1-2.3.8+9e342fc177|Fabric Resource Conditions API|fabric_resource_conditions_api|2.3.8+9e342fc177    |DONE      |Manifest: NOSIGNATURE         forgeconfigapiport-1.11.2+1.20.1.jar              |Forge Config API Port (Connect|forgeconfigapiport            |8.0.0               |DONE      |Manifest: NOSIGNATURE         astikorcarts-1.20.1-1.1.8.jar                     |AstikorCarts Redux            |astikorcarts                  |1.1.8               |DONE      |Manifest: NOSIGNATURE         BrewinAndChewin-1.20.1-3.2.1.jar                  |Brewin' And Chewin'           |brewinandchewin               |1.20.1-3.2.1        |DONE      |Manifest: NOSIGNATURE         notenoughanimations-forge-1.9.3-mc1.20.1.jar      |NotEnoughAnimations           |notenoughanimations           |1.9.3               |DONE      |Manifest: NOSIGNATURE         farmersrespite-1.20.1-2.1.2.jar                   |Farmer's Respite              |farmersrespite                |1.20.1-2.1          |DONE      |Manifest: NOSIGNATURE         shadowizardlib-1.20.1-1.2.5.jar                   |ShadowizardLib                |shadowizardlib                |1.20.1-1.2.5        |DONE      |Manifest: NOSIGNATURE         JustEnoughProfessions-forge-1.20.1-3.0.1.jar      |Just Enough Professions (JEP) |justenoughprofessions         |3.0.1               |DONE      |Manifest: NOSIGNATURE         wits-1.1.0+1.20.1-forge.jar                       |WITS                          |wits                          |1.1.0+1.20.1-forge  |DONE      |Manifest: NOSIGNATURE         fabric-registry-sync-v0-2.3.3+1c0ea72177.jar      |Fabric Registry Sync (v0)     |fabric_registry_sync_v0       |2.3.3+1c0ea72177    |DONE      |Manifest: NOSIGNATURE         FastFurnace-1.20.1-8.0.2.jar                      |FastFurnace                   |fastfurnace                   |8.0.2               |DONE      |Manifest: NOSIGNATURE         tlc_forge-1.0.3-R-1.20.X.jar                      |The Lost Castle               |tlc                           |1.0.2               |DONE      |Manifest: NOSIGNATURE         moremobvariants-forge+1.20.1-1.3.0.1.jar          |More Mob Variants             |moremobvariants               |1.3.0.1             |DONE      |Manifest: NOSIGNATURE         fabric-object-builder-api-v1-11.1.3+2174fc8477.jar|Fabric Object Builder API (v1)|fabric_object_builder_api_v1  |11.1.3+2174fc8477   |DONE      |Manifest: NOSIGNATURE         treasure2_undergarden_lp-1.20.1-3.6.2.jar         |Treasure2 Undergarden LP      |treasure2_undergarden_lp      |3.6.2               |DONE      |Manifest: NOSIGNATURE         Deep Dark Regrowth 1.2.6.1 - 1.20.1.jar           |Deep Dark: Regrowth           |deep_dark_regrowth            |1.2.6.1             |DONE      |Manifest: NOSIGNATURE         fabric-message-api-v1-5.1.9+52cc178c77.jar        |Fabric Message API (v1)       |fabric_message_api_v1         |5.1.9+52cc178c77    |DONE      |Manifest: NOSIGNATURE         cosmeticarmorreworked-1.20.1-v1a.jar              |CosmeticArmorReworked         |cosmeticarmorreworked         |1.20.1-v1a          |DONE      |Manifest: 5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53         phantasm-1.0.1.jar                                |End's Phantasm                |phantasm                      |1.0.1               |DONE      |Manifest: NOSIGNATURE         EuphoriaPatcher-1.5.2-r5.4-forge.jar              |EuphoriaPatcher               |euphoria_patcher              |1.5.2-r5.4-forge    |DONE      |Manifest: NOSIGNATURE         fruitsdelight-1.0.21.jar                          |Fruits Delight                |fruitsdelight                 |1.0.21              |DONE      |Manifest: NOSIGNATURE         grappling_hook_mod-1.20.1-1.20.1-v13.jar          |Grappling Hook Mod            |grapplemod                    |1.20.1-v13          |DONE      |Manifest: NOSIGNATURE         aether_enhanced_extinguishing-1.20.1-1.0.0-neoforg|Enhanced Extinguishing        |aether_enhanced_extinguishing |1.20.1-1.0.0-neoforg|DONE      |Manifest: NOSIGNATURE         SkyVillages-1.0.4-1.19.2-1.20.1-forge-release.jar |Sky Villages                  |skyvillages                   |1.0.4               |DONE      |Manifest: NOSIGNATURE         unusualfishmod-1.1.8.jar                          |Unusual Fish Mod              |unusualfishmod                |1.1.8               |DONE      |Manifest: NOSIGNATURE         kuma-api-forge-20.1.10+1.20.1.jar                 |KumaAPI                       |kuma_api                      |20.1.10             |DONE      |Manifest: NOSIGNATURE         fabric-renderer-api-v1-3.2.1+cf68abbe77.jar       |Fabric Renderer API (v1)      |fabric_renderer_api_v1        |3.2.1+cf68abbe77    |DONE      |Manifest: NOSIGNATURE         Animation_Overhaul-forge-1.20.x-1.3.1.jar         |Animation Overhaul            |animation_overhaul            |1.3.1               |DONE      |Manifest: NOSIGNATURE         fabric-item-api-v1-2.1.28+4d0bbcfa77.jar          |Fabric Item API (v1)          |fabric_item_api_v1            |2.1.28+4d0bbcfa77   |DONE      |Manifest: NOSIGNATURE         IllagerInvasion-v8.0.7-1.20.1-Forge.jar           |Illager Invasion              |illagerinvasion               |8.0.7               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         fireproofboats-1.20.1-1.0.3.jar                   |Fireproof Boats               |fireproofboats                |1.20.1-1.0.3        |DONE      |Manifest: NOSIGNATURE         firstperson-forge-2.4.9-mc1.20.1.jar              |FirstPerson                   |firstperson                   |2.4.9               |DONE      |Manifest: NOSIGNATURE         AdditionalBanners-Forge-1.20.1-14.0.4.jar         |AdditionalBanners             |additionalbanners             |14.0.4              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         sophisticatedcore-1.20.1-1.2.46.956.jar           |Sophisticated Core            |sophisticatedcore             |1.2.46.956          |DONE      |Manifest: NOSIGNATURE         gpumemleakfix-1.20.1-1.8.jar                      |Gpu memory leak fix           |gpumemleakfix                 |1.20.1-1.8          |DONE      |Manifest: NOSIGNATURE         structureessentials-1.20.1-4.7.jar                |Structure Essentials mod      |structureessentials           |1.20.1-4.7          |DONE      |Manifest: NOSIGNATURE         villagernames-1.20.1-8.2.jar                      |Villager Names                |villagernames                 |8.2                 |DONE      |Manifest: NOSIGNATURE         elytra_physics-forge-2.1_mc1.19.3-1.20.4.jar      |Elytra physics                |elytra_physics                |2.1                 |DONE      |Manifest: NOSIGNATURE         Placebo-1.20.1-8.6.3.jar                          |Placebo                       |placebo                       |8.6.3               |DONE      |Manifest: NOSIGNATURE         jumpoverfences-forge-1.20.1-1.3.1.jar             |Jump Over Fences              |jumpoverfences                |1.3.1               |DONE      |Manifest: NOSIGNATURE         lootintegrations-1.20.1-4.3.jar                   |Lootintegrations mod          |lootintegrations              |1.20.1-4.3          |DONE      |Manifest: NOSIGNATURE         finsandtails-1.20.1-1.1.5.jar                     |Fins and Tails                |finsandtails                  |1.20.1-1.1.5        |DONE      |Manifest: NOSIGNATURE         cobweb-forge-1.20.1-1.0.1.jar                     |Cobweb                        |cobweb                        |1.0.1               |DONE      |Manifest: NOSIGNATURE         Bookshelf-Forge-1.20.1-20.2.13.jar                |Bookshelf                     |bookshelf                     |20.2.13             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         forgery-3.5.8+1.20.jar                            |Forgery                       |fabrication                   |3.5.8+1.20          |DONE      |Manifest: NOSIGNATURE         sophisticatedbackpacks-1.20.1-3.23.13.1229.jar    |Sophisticated Backpacks       |sophisticatedbackpacks        |3.23.13.1229        |DONE      |Manifest: NOSIGNATURE         mcw-doors-1.1.2-mc1.20.1forge.jar                 |Macaw's Doors                 |mcwdoors                      |1.1.2               |DONE      |Manifest: NOSIGNATURE         medieval_buildings-1.20.1-1.1.1-forge.jar         |Medieval Buildings            |medieval_buildings            |1.1.1               |DONE      |Manifest: NOSIGNATURE         bygonenether-1.3.2-1.20.x.jar                     |Bygone Nether                 |bygonenether                  |1.3.2               |DONE      |Manifest: NOSIGNATURE         carryon-forge-1.20.1-2.1.2.7.jar                  |Carry On                      |carryon                       |2.1.2.7             |DONE      |Manifest: NOSIGNATURE         macawsroofsbop-1.20-1.1.jar                       |Macaw's Roofs - BOP           |macawsroofsbop                |1.20-1.1            |DONE      |Manifest: NOSIGNATURE         fzzy_config-0.6.9+1.20.1+forge.jar                |Fzzy Config                   |fzzy_config                   |0.6.9+1.20.1+forge  |DONE      |Manifest: NOSIGNATURE         fabric-api-0.92.2+1.11.12+1.20.1.jar              |Forgified Fabric API          |fabric_api                    |0.92.2+1.11.12+1.20.|DONE      |Manifest: NOSIGNATURE         modmenu-bridge-1.11.2+1.20.1.jar                  |Connector Extras ModMenu Bridg|connectorextras_modmenu_bridge|1.11.2+1.20.1       |DONE      |Manifest: NOSIGNATURE         konkrete_forge_1.8.0_MC_1.20-1.20.1.jar           |Konkrete                      |konkrete                      |1.8.0               |DONE      |Manifest: NOSIGNATURE         DiagonalWalls-v8.0.4-1.20.1-Forge.jar             |Diagonal Walls                |diagonalwalls                 |8.0.4               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         diagonalblocks-forge-8.0.6.jar                    |Diagonal Blocks               |diagonalblocks                |8.0.6               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         mcw-bridges-3.0.0-mc1.20.1forge.jar               |Macaw's Bridges               |mcwbridges                    |3.0.0               |DONE      |Manifest: NOSIGNATURE         jearchaeology-1.20.1-1.0.4.jar                    |Just Enough Archaeology       |jearchaeology                 |1.20.1-1.0.4        |DONE      |Manifest: NOSIGNATURE         fabric-api-lookup-api-v1-1.6.36+67f9824077.jar    |Fabric API Lookup API (v1)    |fabric_api_lookup_api_v1      |1.6.36+67f9824077   |DONE      |Manifest: NOSIGNATURE         projectvibrantjourneys-1.20.1-6.1.0.jar           |Project: Vibrant Journeys     |projectvibrantjourneys        |1.20.1-6.1.0        |DONE      |Manifest: NOSIGNATURE         LetSleepingDogsLie-1.20.1-Forge-1.3.0.jar         |Let Sleeping Dogs Lie         |dogslie                       |1.3.0               |DONE      |Manifest: ae:67:c5:55:fb:7e:f3:4e:5c:71:f4:50:9e:df:a2:b0:32:86:cf:09:f2:fe:9b:db:94:3b:09:88:a2:3d:91:1f         nocube's_better_grindstone_1.0.1_forge_1.20.1.jar |NoCube's Better Grindstone    |nocubesbettergrindstone       |1.0.1               |DONE      |Manifest: NOSIGNATURE         eeeabsmobs-1.20.1-0.97-Fix.jar                    |EEEAB's Mobs                  |eeeabsmobs                    |1.20.1-0.97         |DONE      |Manifest: NOSIGNATURE         dynamiccrosshair-9.3+1.20.1-forge-api.jar         |Dynamic Crosshair API         |dynamiccrosshairapi           |1.1                 |DONE      |Manifest: NOSIGNATURE         lionfishapi-2.4-Fix.jar                           |LionfishAPI                   |lionfishapi                   |2.4-Fix             |DONE      |Manifest: NOSIGNATURE         fishontheline-1.20.1-3.5.jar                      |Fish On The Line              |fishontheline                 |3.5                 |DONE      |Manifest: NOSIGNATURE         architectury-bridge-1.11.2+1.20.1.jar             |Connector Extras Architectury |connectorextras_architectury_b|1.11.2+1.20.1       |DONE      |Manifest: NOSIGNATURE         memorysettings-1.20.1-5.9.jar                     |memorysettings mod            |memorysettings                |1.20.1-5.9          |DONE      |Manifest: NOSIGNATURE         realmrpg_seadwellers_2.9.9_forge_1.20.1.jar       |Realm RPG: Sea Dwellers       |seadwellers                   |2.9.9               |DONE      |Manifest: NOSIGNATURE         villagertools-1.20.1-1.0.3.jar                    |villagertools                 |villagertools                 |1.0.3               |DONE      |Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed         spartanfire-1.20.1-2.1.0.jar                      |Spartan Weaponry: Ice and Fire|spartanfire                   |2.1.0               |DONE      |Manifest: NOSIGNATURE         Connector-1.0.0-beta.46+1.20.1-mod.jar            |Connector                     |connectormod                  |1.0.0-beta.46+1.20.1|DONE      |Manifest: NOSIGNATURE         spartanskies-1.20.1-1.2.0.jar                     |Spartan Weaponry: Blue Skies  |spartanskies                  |1.20.1-1.2.0        |DONE      |Manifest: NOSIGNATURE         Runelic-Forge-1.20.1-18.0.2.jar                   |Runelic                       |runelic                       |18.0.2              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         starterkit-1.20.1-7.4.jar                         |Starter Kit                   |starterkit                    |7.4                 |DONE      |Manifest: NOSIGNATURE         BridgingMod-2.5.1+1.20.1.forge-release.jar        |Bridging Mod                  |bridgingmod                   |2.5.1+1.20.1        |DONE      |Manifest: NOSIGNATURE         twilightdelight-2.0.13.jar                        |Twilight's Flavor & Delight   |twilightdelight               |2.0.13              |DONE      |Manifest: NOSIGNATURE         immersivelanterns-forge-1.0.6-1.20.1.jar          |Immersive Lanterns            |immersivelanterns             |1.0.6               |DONE      |Manifest: NOSIGNATURE         AI-Improvements-1.20-0.5.2.jar                    |AI-Improvements               |aiimprovements                |0.5.2               |DONE      |Manifest: NOSIGNATURE         cupboard-1.20.1-2.7.jar                           |Cupboard utilities            |cupboard                      |1.20.1-2.7          |DONE      |Manifest: NOSIGNATURE         The_Undergarden-1.20.1-0.8.14.jar                 |The Undergarden               |undergarden                   |0.8.14              |DONE      |Manifest: NOSIGNATURE         monolib-forge-1.20.1-2.0.0.jar                    |MonoLib                       |monolib                       |2.0.0               |DONE      |Manifest: NOSIGNATURE         framework-forge-1.20.1-0.7.12.jar                 |Framework                     |framework                     |0.7.12              |DONE      |Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         puffish_attributes-0.7.3-1.20-forge.jar           |Pufferfish's Attributes       |puffish_attributes            |0.7.3               |DONE      |Manifest: NOSIGNATURE         WhatTheBucket-Forge-1.20.1-11.0.3.jar             |WhatTheBucket                 |whatthebucket                 |11.0.3              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         quark_delight_1.0.0_forge_1.20.1.jar              |Quark Delight                 |quarkdelight                  |1.0.0               |DONE      |Manifest: NOSIGNATURE         Celestial Configuration-forge-1.20.1-1.1.1.jar    |Celestial Configuration       |celesteconfig                 |1.1.1               |DONE      |Manifest: NOSIGNATURE         dreadsteel-1.20.1-1.1.9.jar                       |Dreadsteel                    |dreadsteel                    |1.1.9               |DONE      |Manifest: NOSIGNATURE         fabric-key-binding-api-v1-1.0.37+561530ec77.jar   |Fabric Key Binding API (v1)   |fabric_key_binding_api_v1     |1.0.37+561530ec77   |DONE      |Manifest: NOSIGNATURE         fabric-transfer-api-v1-3.3.5+631c9cd677.jar       |Fabric Transfer API (v1)      |fabric_transfer_api_v1        |3.3.5+631c9cd677    |DONE      |Manifest: NOSIGNATURE         BedBenefits-Forge-1.20.1-13.0.3.jar               |BedBenefits                   |bedbenefits                   |13.0.3              |DONE      |Manifest: NOSIGNATURE         Shrines-1.20.1-6.0.2.jar                          |Shrines                       |shrines                       |1.20.1-6.0.2        |DONE      |Manifest: NOSIGNATURE         phantasmic-1.20.1-0.2.5.jar                       |Phantasmic                    |nourished_nether              |0.2.5               |DONE      |Manifest: NOSIGNATURE         Pretty Rain-1.20.1-Forge-1.1.3.jar                |Pretty Rain                   |particlerain                  |1.1.3               |DONE      |Manifest: NOSIGNATURE         common-networking-forge-1.0.5-1.20.1.jar          |Common Networking             |commonnetworking              |1.0.5-1.20.1        |DONE      |Manifest: NOSIGNATURE         pehkui-bridge-1.11.2+1.20.1.jar                   |Connector Extras Pehkui Bridge|connectorextras_pehkui_bridge |1.11.2+1.20.1       |DONE      |Manifest: NOSIGNATURE         the-conjurer-1.20.1-1.1.6.jar                     |The Conjurer                  |conjurer_illager              |1.1.6               |DONE      |Manifest: NOSIGNATURE         Monster Hunter Villager 1.2.1-1.20.1.jar          |Monster Hunter Villager       |monster_hunter_villager       |1.2.1               |DONE      |Manifest: NOSIGNATURE         fabric-resource-loader-v0-0.11.10+bcd08ed377.jar  |Fabric Resource Loader (v0)   |fabric_resource_loader_v0     |0.11.10+bcd08ed377  |DONE      |Manifest: NOSIGNATURE         obscure_api-15.jar                                |Obscure API                   |obscure_api                   |15                  |DONE      |Manifest: NOSIGNATURE         enlightend-5.0.14-1.20.1.jar                      |Enlightend                    |enlightened_end               |5.0.14              |DONE      |Manifest: NOSIGNATURE         illagerwarship-1.0.0 forge 1.20.1.jar             |Illager-Warship               |illagerwarship                |1.0.0               |DONE      |Manifest: NOSIGNATURE         mcw-paintings-1.0.5-1.20.1forge.jar               |Macaw's Paintings             |mcwpaintings                  |1.0.5               |DONE      |Manifest: NOSIGNATURE         Clumps-forge-1.20.1-12.0.0.4.jar                  |Clumps                        |clumps                        |12.0.0.4            |DONE      |Manifest: NOSIGNATURE         danger_close-merged-1.20.1-3.1.3.jar              |Danger Close                  |danger_close                  |3.1.3               |DONE      |Manifest: NOSIGNATURE         Tumbleweed-forge-1.20.1-0.5.5.jar                 |Tumbleweed                    |tumbleweed                    |0.5.5               |DONE      |Manifest: NOSIGNATURE         TheOuterEnd-1.0.10.jar                            |The Outer End                 |outer_end                     |1.0.8               |DONE      |Manifest: NOSIGNATURE         decorative_blocks-forge-1.20.1-4.1.3.jar          |Decorative Blocks             |decorative_blocks             |4.1.3               |DONE      |Manifest: NOSIGNATURE         Aquamirae Mod Boss Music Tweaks 1.20.1 v1.1.0.jar |Aquamirae Mod EXTRA Music     |aquamirae_mod_extra_music     |1.0.0               |DONE      |Manifest: NOSIGNATURE         ExplorersCompass-1.20.1-1.3.3-forge.jar           |Explorer's Compass            |explorerscompass              |1.20.1-1.3.3-forge  |DONE      |Manifest: NOSIGNATURE         PineappleDelight-Forge-1.20-1.0.13.jar            |Pineapple Delight             |pineapple_delight             |1.0.13              |DONE      |Manifest: NOSIGNATURE         iChunUtil-1.20.1-Forge-1.0.3.jar                  |iChunUtil                     |ichunutil                     |1.0.3               |DONE      |Manifest: ae:67:c5:55:fb:7e:f3:4e:5c:71:f4:50:9e:df:a2:b0:32:86:cf:09:f2:fe:9b:db:94:3b:09:88:a2:3d:91:1f         txnilib-forge-1.0.23-1.20.1.jar                   |TxniLib                       |txnilib                       |1.0.23              |DONE      |Manifest: NOSIGNATURE         azurelib-neo-1.20.1-2.0.41.jar                    |AzureLib                      |azurelib                      |2.0.41              |DONE      |Manifest: NOSIGNATURE         energy-bridge-1.11.2+1.20.1.jar                   |Connector Extras Energy Bridge|connectorextras_energy_bridge |1.11.2+1.20.1       |DONE      |Manifest: NOSIGNATURE         UsefulSlime-forge-1.20.1-1.8.1.jar                |Useful Slime                  |usefulslime                   |1.8.1               |DONE      |Manifest: NOSIGNATURE         skinlayers3d-forge-1.7.5-mc1.20.1.jar             |3d-Skin-Layers                |skinlayers3d                  |1.7.5               |DONE      |Manifest: NOSIGNATURE         TravelersTitles-1.20-Forge-4.0.2.jar              |Traveler's Titles             |travelerstitles               |1.20-Forge-4.0.2    |DONE      |Manifest: NOSIGNATURE         morezombievillagers-1.20.1-3.6.jar                |More Zombie Villagers         |morezombievillagers           |3.6                 |DONE      |Manifest: NOSIGNATURE         Raided-1.20.1-0.1.4.jar                           |Raided                        |raided                        |0.1.4               |DONE      |Manifest: NOSIGNATURE         friendsandfoes-forge-mc1.20.1-3.0.9.jar           |Friends&Foes                  |friendsandfoes                |3.0.9               |DONE      |Manifest: NOSIGNATURE         nyfsspiders-forge-1.20.1-2.1.1.jar                |Nyf's Spiders                 |nyfsspiders                   |2.1.1               |DONE      |Manifest: NOSIGNATURE         tetrasdelight-1.20.1-1.jar                        |Tetra's Delight               |tetrasdelight                 |1.20.1-1            |DONE      |Manifest: NOSIGNATURE         RubinatedNether-forge-1.3.0.E-1.20.1.jar          |Rubinated Nether              |rubinated_nether              |1.3.0.E-1.20.1      |DONE      |Manifest: NOSIGNATURE         extragore-1.20.1-5.2.3.1.jar                      |Extra Gore                    |extragore                     |5.2.3.1             |DONE      |Manifest: NOSIGNATURE         mysterious_mountain_lib-1.5.19-1.20.1.jar         |Mysterious Mountain Lib       |mysterious_mountain_lib       |1.5.19-1.20.1       |DONE      |Manifest: NOSIGNATURE         fabric-blockrenderlayer-v1-1.1.41+1d0da21e77.jar  |Fabric BlockRenderLayer Regist|fabric_blockrenderlayer_v1    |1.1.41+1d0da21e77   |DONE      |Manifest: NOSIGNATURE         Obscure-Tooltips-2.2.jar                          |Obscure Tooltips              |obscure_tooltips              |2.2                 |DONE      |Manifest: NOSIGNATURE         amecsapi-1.5.3+mc1.20-pre1.jar                    |Amecs API                     |amecsapi                      |1.5.3+mc1.20-pre1   |DONE      |Manifest: NOSIGNATURE         another_furniture-forge-1.20.1-3.0.2.jar          |Another Furniture             |another_furniture             |1.20.1-3.0.2        |DONE      |Manifest: NOSIGNATURE         spidersproducewebs-1.20.1-3.6.jar                 |Spiders Produce Webs          |spidersproducewebs            |3.6                 |DONE      |Manifest: NOSIGNATURE         CreativeCore_FORGE_v2.12.32_mc1.20.1.jar          |CreativeCore                  |creativecore                  |2.12.32             |DONE      |Manifest: NOSIGNATURE         SpartanShields-1.20.1-forge-3.1.1.jar             |Spartan Shields               |spartanshields                |3.1.1               |DONE      |Manifest: NOSIGNATURE         bucketlib-1.20.1-2.3.5.3.jar                      |BucketLib                     |bucketlib                     |1.20.1-2.3.5.3      |DONE      |Manifest: NOSIGNATURE         PigPen-Forge-1.20.1-15.0.2.jar                    |PigPen                        |pigpen                        |15.0.2              |DONE      |Manifest: NOSIGNATURE         FastWorkbench-1.20.1-8.0.4.jar                    |Fast Workbench                |fastbench                     |8.0.4               |DONE      |Manifest: NOSIGNATURE         StorageDrawers-1.20.1-12.9.13.jar                 |Storage Drawers               |storagedrawers                |12.9.13             |DONE      |Manifest: NOSIGNATURE         DiagonalFences-v8.1.5-1.20.1-Forge.jar            |Diagonal Fences               |diagonalfences                |8.1.5               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         miners_delight-1.20.1-1.2.3.jar                   |Miner's Delight               |miners_delight                |1.20.1-1.2.3        |DONE      |Manifest: NOSIGNATURE         MyNethersDelight-1.20.1-0.1.7.5.jar               |My Nether's Delight           |mynethersdelight              |1.20.1-1.7.5        |DONE      |Manifest: NOSIGNATURE         betterarcheology-1.2.1-1.20.1.jar                 |Better Archeology             |betterarcheology              |1.2.1-1.20.1        |DONE      |Manifest: NOSIGNATURE         fabric-biome-api-v1-13.0.13+dc36698e77.jar        |Fabric Biome API (v1)         |fabric_biome_api_v1           |13.0.13+dc36698e77  |DONE      |Manifest: NOSIGNATURE         raised-forge-1.20.1-4.0.1.jar                     |Raised                        |raised                        |4.0.1               |DONE      |Manifest: NOSIGNATURE         ferritecore-6.0.1-forge.jar                       |Ferrite Core                  |ferritecore                   |6.0.1               |DONE      |Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a         Enhanced-Celestials-forge-1.20.1-5.0.3.1.jar      |Enhanced Celestials           |enhancedcelestials            |1.20.1-5.0.3.1      |DONE      |Manifest: NOSIGNATURE         Corgilib-Forge-1.20.1-4.0.3.3.jar                 |CorgiLib                      |corgilib                      |4.0.3.3             |DONE      |Manifest: NOSIGNATURE         Data_Anchor-forge-1.20.1-1.0.0.13.jar             |Data Anchor                   |dataanchor                    |1.0.0.13            |DONE      |Manifest: NOSIGNATURE         notrample-1.20.1-1.0.1.jar                        |No Trample                    |notrample                     |1.20.1-1.0.1        |DONE      |Manifest: NOSIGNATURE         justzoom_forge_2.1.1_MC_1.20.1.jar                |Just Zoom                     |justzoom                      |2.1.1               |DONE      |Manifest: NOSIGNATURE         majruszs-enchantments-forge-1.20.1-1.10.8.jar     |Majrusz's Enchantments        |majruszsenchantments          |1.10.8              |DONE      |Manifest: NOSIGNATURE         realmrpg_quests-0.1.1-forge-1.20.1.jar            |Realm RPG: Quests & Rewards   |realmrpg_quests               |0.1.1               |DONE      |Manifest: NOSIGNATURE         secondchanceforge-1.20-1.5.1.jar                  |Second Chance Forge           |secondchanceforge             |1.5.1               |DONE      |Manifest: NOSIGNATURE         mcwbyg-1.20.1-1.2.1.jar                           |Macaw's - Oh the Biomes You'll|mcwbyg                        |1.20.1-1.2.1        |DONE      |Manifest: NOSIGNATURE         addonslib-1.20.1-1.4.jar                          |Addons Lib                    |addonslib                     |1.20.1-1.4          |DONE      |Manifest: NOSIGNATURE         supermartijn642configlib-1.1.8-forge-mc1.20.jar   |SuperMartijn642's Config Libra|supermartijn642configlib      |1.1.8               |DONE      |Manifest: NOSIGNATURE         player-animation-lib-forge-1.0.2-rc1+1.20.jar     |Player Animator               |playeranimator                |1.0.2-rc1+1.20      |DONE      |Manifest: NOSIGNATURE         combatroll-forge-1.3.3+1.20.1.jar                 |Combat Roll                   |combatroll                    |1.3.3+1.20.1        |DONE      |Manifest: NOSIGNATURE         Grass_Overhaul-Forge-23.10.10-MC1.20.1.jar        |Grass Overhaul                |grassoverhaul                 |23.10.10            |DONE      |Manifest: NOSIGNATURE         mcw-windows-2.3.0-mc1.20.1forge.jar               |Macaw's Windows               |mcwwindows                    |2.3.0               |DONE      |Manifest: NOSIGNATURE         sound-physics-remastered-forge-1.20.1-1.4.13.jar  |Sound Physics Remastered      |sound_physics_remastered      |1.20.1-1.4.13       |DONE      |Manifest: NOSIGNATURE         fabric-convention-tags-v1-1.5.5+fa3d1c0177.jar    |Fabric Convention Tags        |fabric_convention_tags_v1     |1.5.5+fa3d1c0177    |DONE      |Manifest: NOSIGNATURE         lootbeams-1.20.1-1.2.6.jar                        |LootBeams                     |lootbeams                     |1.20.1              |DONE      |Manifest: NOSIGNATURE         guardvillagers-1.20.1-1.6.10.jar                  |Guard Villagers               |guardvillagers                |1.20.1-1.6.10       |DONE      |Manifest: NOSIGNATURE         forge-medievalend-1.0.1.jar                       |Medieval Buildings [The End Ed|medievalend                   |1.0.1               |DONE      |Manifest: NOSIGNATURE         treasure2_twilight_forest_lp-1.20.1-3.6.2.jar     |Treasure2 Twilight Forest LP  |treasure2_twilight_forest_lp  |3.6.2               |DONE      |Manifest: NOSIGNATURE         Compat_FarmersDelight.jar                         |Farmer's Delight Compat       |farmersdelightcompat          |1.1.0               |DONE      |Manifest: NOSIGNATURE         farmers-cutting-biomes-o-plenty-1.0.0.jar         |Farmer's Cutting: Biomes O' Pl|fcbop                         |1.0.0               |DONE      |Manifest: NOSIGNATURE         balm-forge-1.20.1-7.3.27-all.jar                  |Balm                          |balm                          |7.3.27              |DONE      |Manifest: NOSIGNATURE         fabric-screen-api-v1-2.0.8+45a670a577.jar         |Fabric Screen API (v1)        |fabric_screen_api_v1          |2.0.8+45a670a577    |DONE      |Manifest: NOSIGNATURE         dynview-1.20.1-4.0.jar                            |Dynamic view distance         |dynview                       |2.3                 |DONE      |Manifest: NOSIGNATURE         immersive_armors-1.6.1+1.20.1-forge.jar           |Immersive Armors              |immersive_armors              |1.6.1+1.20.1        |DONE      |Manifest: NOSIGNATURE         JustEnoughResources-1.20.1-1.4.0.247.jar          |Just Enough Resources         |jeresources                   |1.4.0.247           |DONE      |Manifest: NOSIGNATURE         [forge]ctov-3.4.13.jar                            |ChoiceTheorem's Overhauled Vil|ctov                          |3.4.13              |DONE      |Manifest: NOSIGNATURE         vminus-forge-1.20.1-3.2.7.jar                     |VMinus                        |vminus                        |3.2.7               |DONE      |Manifest: NOSIGNATURE         athena-forge-1.20.1-3.1.1.jar                     |Athena                        |athena                        |3.1.1               |DONE      |Manifest: NOSIGNATURE         terrablender-bridge-1.11.2+1.20.1.jar             |Connector Extras Terrablender |connectorextras_terrablender_b|1.11.2+1.20.1       |DONE      |Manifest: NOSIGNATURE         vintagedelight-0.1.6.jar                          |Vintage Delight               |vintagedelight                |0.1.6               |DONE      |Manifest: NOSIGNATURE         fabric-game-rule-api-v1-1.0.40+683d4da877.jar     |Fabric Game Rule API (v1)     |fabric_game_rule_api_v1       |1.0.40+683d4da877   |DONE      |Manifest: NOSIGNATURE         ToolStats-Forge-1.20.1-16.0.9.jar                 |ToolStats                     |toolstats                     |16.0.9              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         WaystonesTeleportPets-1.20-1.20.1--1.2.jar        |Waystones Teleport Pets       |w2pets                        |1.0                 |DONE      |Manifest: NOSIGNATURE         ironfurnaces-1.20.1-4.1.6.jar                     |Iron Furnaces                 |ironfurnaces                  |4.1.6               |DONE      |Manifest: NOSIGNATURE         unusualend-2.3.0-forge-1.20.1.jar                 |Unusual End                   |unusualend                    |2.3.0               |DONE      |Manifest: NOSIGNATURE         supermartijn642corelib-1.1.18-forge-mc1.20.1.jar  |SuperMartijn642's Core Lib    |supermartijn642corelib        |1.1.18              |DONE      |Manifest: NOSIGNATURE         YungsBridges-1.20-Forge-4.0.3.jar                 |YUNG's Bridges                |yungsbridges                  |1.20-Forge-4.0.3    |DONE      |Manifest: NOSIGNATURE         resourcefulconfig-forge-1.20.1-2.1.3.jar          |Resourcefulconfig             |resourcefulconfig             |2.1.3               |DONE      |Manifest: NOSIGNATURE         enchantmenttransfer-0.0.6-1.20.1.jar              |Enchantment Transfer          |enchantmenttransfer           |0.0.6               |DONE      |Manifest: NOSIGNATURE         tidal-towns-1.3.4.jar                             |Tidal Towns                   |mr_tidal_towns                |1.3.4               |DONE      |Manifest: NOSIGNATURE         mysticaloaktree-1.20-1.11.jar                     |Mystical Oak Tree             |mysticaloaktree               |1.20-1.11           |DONE      |Manifest: NOSIGNATURE         curios-forge-5.14.1+1.20.1.jar                    |Curios API                    |curios                        |5.14.1+1.20.1       |DONE      |Manifest: NOSIGNATURE         Desert Mining 1.0.0 -1.20.1.jar                   |Desert Mining                 |desert_mining                 |1.0.0               |DONE      |Manifest: NOSIGNATURE         Searchables-forge-1.20.1-1.0.3.jar                |Searchables                   |searchables                   |1.0.3               |DONE      |Manifest: NOSIGNATURE         Eldritch_End-FORGE-MC1.20.1-0.3.3_mapped_srg_1.20.|Eldritch End                  |eldritch_end                  |0.3.3               |DONE      |Manifest: NOSIGNATURE         Measurements-forge-1.20.1-2.0.1.jar               |Measurements                  |measurements                  |2.0.1               |DONE      |Manifest: NOSIGNATURE         fabric-entity-events-v1-1.6.0+6274ab9d77.jar      |Fabric Entity Events (v1)     |fabric_entity_events_v1       |1.6.0+6274ab9d77    |DONE      |Manifest: NOSIGNATURE         sapience-1.20.1-1.0.0.jar                         |Sapience                      |sapience                      |1.20.1-1.0.0        |DONE      |Manifest: NOSIGNATURE         mcw-furniture-3.3.0-mc1.20.1forge.jar             |Macaw's Furniture             |mcwfurnitures                 |3.3.0               |DONE      |Manifest: NOSIGNATURE         ApothicCurios-1.20.1-1.0.3d.jar                   |Apothic Curios                |apothiccurios                 |1.0.3d              |DONE      |Manifest: NOSIGNATURE         mountedpearl-1.20.1-1.0.1.jar                     |Mounted Pearl                 |mountedpearl                  |1.0.1               |DONE      |Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed         DerexMaceMod-Balanced-1.20.1-8.1.7.2.jar          |Mace                          |mace_backport                 |8.1.7.2             |DONE      |Manifest: NOSIGNATURE         Haste Enchantment 1.0.0 - 1.20.1.jar              |Haste Enchantment             |hasteenchantment              |1.0.0               |DONE      |Manifest: NOSIGNATURE         AdChimneys-1.20.1-10.1.16.0-build.0995.jar        |Advanced Chimneys             |adchimneys                    |10.1.16.0           |DONE      |Manifest: NOSIGNATURE         JadeAddons-1.20.1-Forge-5.3.1.jar                 |Jade Addons                   |jadeaddons                    |5.3.1+forge         |DONE      |Manifest: NOSIGNATURE         majrusz-library-forge-1.20.1-7.0.8.jar            |Majrusz Library               |majruszlibrary                |7.0.8               |DONE      |Manifest: NOSIGNATURE         DarkPaintings-Forge-1.20.1-17.0.4.jar             |DarkPaintings                 |darkpaintings                 |17.0.4              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         mcwabnormals-1.20.1-1.2.jar                       |Macaw's Abnormals             |mcwabnormals                  |1.20.1-1.2          |DONE      |Manifest: NOSIGNATURE         DripSounds-1.19.4-0.3.2.jar                       |Drip Sounds                   |waterdripsound                |0.3.2               |DONE      |Manifest: NOSIGNATURE         fabric-dimensions-v1-2.1.54+8005d10d77.jar        |Fabric Dimensions API (v1)    |fabric_dimensions_v1          |2.1.54+8005d10d77   |DONE      |Manifest: NOSIGNATURE         BetterAnimationsCollection-v8.0.0-1.20.1-Forge.jar|Better Animations Collection  |betteranimationscollection    |8.0.0               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         mowziesmobs-1.7.1.jar                             |Mowzie's Mobs                 |mowziesmobs                   |1.7.1               |DONE      |Manifest: NOSIGNATURE         Fastload-Reforged-mc1.20.1-3.4.0.jar              |Fastload-Reforged             |fastload                      |3.4.0               |DONE      |Manifest: NOSIGNATURE         puzzlesapi-forge-8.1.7.jar                        |Puzzles Api                   |puzzlesapi                    |8.1.7               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         formationsnether-1.0.5.jar                        |Formations Nether             |formationsnether              |1.0.5               |DONE      |Manifest: NOSIGNATURE         [1.20.1][Forge] RPG-HUD-3.10.jar                  |RPG-HUD                       |rpghud                        |3.10                |DONE      |Manifest: NOSIGNATURE         fabric-model-loading-api-v1-1.0.3+6274ab9d77.jar  |Fabric Model Loading API (v1) |fabric_model_loading_api_v1   |1.0.3+6274ab9d77    |DONE      |Manifest: NOSIGNATURE         lithostitched-forge-1.20.1-1.4.4.jar              |Lithostitched                 |lithostitched                 |1.4                 |DONE      |Manifest: NOSIGNATURE         Stoneworks-v8.0.0-1.20.1-Forge.jar                |Stoneworks                    |stoneworks                    |8.0.0               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         fabric-rendering-v1-3.0.8+66e9a48f77.jar          |Fabric Rendering (v1)         |fabric_rendering_v1           |3.0.8+66e9a48f77    |DONE      |Manifest: NOSIGNATURE         fabric-renderer-indigo-1.5.2+b5b2da4177.jar       |Fabric Renderer - Indigo      |fabric_renderer_indigo        |1.5.2+b5b2da4177    |DONE      |Manifest: NOSIGNATURE         fallingleaves-1.20.1-2.1.2.jar                    |Fallingleaves                 |fallingleaves                 |2.1.2               |DONE      |Manifest: NOSIGNATURE         ApotheoticAdditionsV2.2.2.jar                     |Apotheotic Additions          |apotheotic_additions          |2.2.2               |DONE      |Manifest: NOSIGNATURE         NaturesCompass-1.20.1-1.11.2-forge.jar            |Nature's Compass              |naturescompass                |1.20.1-1.11.2-forge |DONE      |Manifest: NOSIGNATURE         smarterfarmers-1.20-2.1.2.jar                     |Smarter Farmers               |smarterfarmers                |1.20-2.1.2          |DONE      |Manifest: NOSIGNATURE         jumpboat-1.20.0-1.0.5.jar                         |Jumpy Boats                   |jumpboat                      |1.20.0-1.0.5        |DONE      |Manifest: NOSIGNATURE         catjammies-1.20.1-1.6.2.jar                       |CatJammies                    |catjammies                    |1.20.1-1.6.2        |DONE      |Manifest: NOSIGNATURE         GlitchCore-forge-1.20.1-0.0.1.1.jar               |GlitchCore                    |glitchcore                    |0.0.1.1             |DONE      |Manifest: NOSIGNATURE         SereneSeasons-forge-1.20.1-9.1.0.2.jar            |Serene Seasons                |sereneseasons                 |9.1.0.2             |DONE      |Manifest: NOSIGNATURE         geckolib-fabric-compat-1.11.2+1.20.1.jar          |Connector Extras Geckolib-Fabr|connectorextras_geckolib_fabri|1.11.2+1.20.1       |DONE      |Manifest: NOSIGNATURE         table_top_craft-1.20.1-6.1.2.jar                  |Table Top Craft               |table_top_craft               |1.20.1-6.1.2        |DONE      |Manifest: NOSIGNATURE         dismountentity-1.20.1-3.6.jar                     |Dismount Entity               |dismountentity                |3.6                 |DONE      |Manifest: NOSIGNATURE         Speed Enchantment 1.0.0 - 1.20.1.jar              |Speed Enchantment             |speed_enchantment             |1.0.0               |DONE      |Manifest: NOSIGNATURE         formations-1.0.3-forge-mc1.20.2.jar               |Formations                    |formations                    |1.0.3               |DONE      |Manifest: NOSIGNATURE         aether_delight_1.0.0_forge_1.20.1.jar             |Aether Delight                |aetherdelight                 |1.0.0               |DONE      |Manifest: NOSIGNATURE         puzzlesaccessapi-forge-20.1.1.jar                 |Puzzles Access Api            |puzzlesaccessapi              |20.1.1              |DONE      |Manifest: NOSIGNATURE         DungeonsAriseSevenSeas-1.20.x-1.0.2-forge.jar     |When Dungeons Arise: Seven Sea|dungeons_arise_seven_seas     |1.0.2               |DONE      |Manifest: NOSIGNATURE         More Wandering Trades 1.0.0 - 1.20.1.jar          |More Wandering Trades         |more_wandering_trades         |1.0.0               |DONE      |Manifest: NOSIGNATURE         chalk-1.20.1-1.6.5.jar                            |Chalk                         |chalk                         |1.6.5               |DONE      |Manifest: NOSIGNATURE         ZombieMoon-1.20.jar                               |Horde Moon                    |zombiemoon                    |1.20                |DONE      |Manifest: NOSIGNATURE         mcw-paths-1.1.0forge-mc1.20.1.jar                 |Macaw's Paths and Pavings     |mcwpaths                      |1.1.0               |DONE      |Manifest: NOSIGNATURE         wither_spawn_animation-1.5.1-forge-1.20.1.jar     |Wither Spawn Animation        |wither_spawn_animation        |1.5.1               |DONE      |Manifest: NOSIGNATURE         fabric-api-base-0.4.31+ef105b4977.jar             |Fabric API Base               |fabric_api_base               |0.4.31+ef105b4977   |DONE      |Manifest: NOSIGNATURE         MouseTweaks-forge-mc1.20.1-2.25.1.jar             |Mouse Tweaks                  |mousetweaks                   |2.25.1              |DONE      |Manifest: NOSIGNATURE         EasierSleeping-1.20.1-2.1.3.jar                   |Easier Sleeping               |easier_sleeping               |2.1.3               |DONE      |Manifest: NOSIGNATURE         cwb-forge-3.0.0+mc1.20.jar                        |Cubes Without Borders         |cubes_without_borders         |3.0.0+mc1.20        |DONE      |Manifest: NOSIGNATURE         Oh-The-Trees-Youll-Grow-forge-1.20.1-1.3.8.jar    |Oh The Trees You'll Grow      |ohthetreesyoullgrow           |1.3.8               |DONE      |Manifest: NOSIGNATURE         spectrelib-forge-0.13.17+1.20.1.jar               |SpectreLib                    |spectrelib                    |0.13.17+1.20.1      |DONE      |Manifest: NOSIGNATURE         jei-bridge-1.11.2+1.20.1.jar                      |Connector Extras JEI Bridge   |connectorextras_jei_bridge    |1.11.2+1.20.1       |DONE      |Manifest: NOSIGNATURE         kffmod-4.11.0.jar                                 |Kotlin For Forge              |kotlinforforge                |4.11.0              |DONE      |Manifest: NOSIGNATURE         ecologics-forge-1.20.1-2.2.0.jar                  |Ecologics                     |ecologics                     |2.2.0               |DONE      |Manifest: NOSIGNATURE         fabric-item-group-api-v1-4.0.12+c9161c2d77.jar    |Fabric Item Group API (v1)    |fabric_item_group_api_v1      |4.0.12+c9161c2d77   |DONE      |Manifest: NOSIGNATURE         imfast-FORGE-1.20.1-1.0.2.jar                     |I'm Fast                      |imfast                        |1.0.2               |DONE      |Manifest: NOSIGNATURE         polymorph-forge-0.49.9+1.20.1.jar                 |Polymorph                     |polymorph                     |0.49.9+1.20.1       |DONE      |Manifest: NOSIGNATURE         entityculling-forge-1.7.4-mc1.20.1.jar            |EntityCulling                 |entityculling                 |1.7.4               |DONE      |Manifest: NOSIGNATURE         oceansdelight-1.0.2-1.20.jar                      |Ocean's Delight               |oceansdelight                 |1.0.2-1.20          |DONE      |Manifest: NOSIGNATURE         fabric-recipe-api-v1-1.0.21+514a076577.jar        |Fabric Recipe API (v1)        |fabric_recipe_api_v1          |1.0.21+514a076577   |DONE      |Manifest: NOSIGNATURE         visuality-forge-2.0.2.jar                         |Visuality: Reforged           |visuality                     |2.0.2               |DONE      |Manifest: NOSIGNATURE         ubesdelight-forge-1.20.1-0.3.4.jar                |Ube's Delight                 |ubesdelight                   |0.3.4               |DONE      |Manifest: NOSIGNATURE         PuzzlesLib-v8.1.32-1.20.1-Forge.jar               |Puzzles Lib                   |puzzleslib                    |8.1.32              |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         FriendlyFire-Forge-1.20.1-18.0.7.jar              |FriendlyFire                  |friendlyfire                  |18.0.7              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         fabric-sound-api-v1-1.0.13+4f23bd8477.jar         |Fabric Sound API (v1)         |fabric_sound_api_v1           |1.0.13+4f23bd8477   |DONE      |Manifest: NOSIGNATURE         explosiveenhancement-1.1.0-1.20.1-client-and-serve|Explosive Enhancement         |explosiveenhancement          |1.1.0               |DONE      |Manifest: NOSIGNATURE         chunksending-1.20.1-2.8.jar                       |chunksending mod              |chunksending                  |1.20.1-2.8          |DONE      |Manifest: NOSIGNATURE         aquamirae-6.API15.jar                             |Aquamirae                     |aquamirae                     |6.API15             |DONE      |Manifest: NOSIGNATURE         xptome-1.20.1-2.2.1.jar                           |XP Tome                       |xpbook                        |2.2.1               |DONE      |Manifest: NOSIGNATURE         cristellib-1.1.6-forge.jar                        |Cristel Lib                   |cristellib                    |1.1.6               |DONE      |Manifest: NOSIGNATURE         CarbonConfig-1.20-1.2.7.jar                       |Carbon Config Library         |carbonconfig                  |1.20-1.2.7          |DONE      |Manifest: NOSIGNATURE         tetra-1.20.1-6.9.0.jar                            |tetra                         |tetra                         |6.9.0               |DONE      |Manifest: NOSIGNATURE         undergardenpatch-1.4.2-1.20.1.jar                 |Undergarden-Tetra Patch       |undergardenpatch              |1.4.2-1.20.1        |DONE      |Manifest: NOSIGNATURE         tetranomicon-1.6.1-1.20.1.jar                     |Tetranomicon                  |tetranomicon                  |1.6.1-1.20.1        |DONE      |Manifest: NOSIGNATURE         TreeChop-1.20.1-forge-0.19.0-fixed.jar            |HT's TreeChop                 |treechop                      |0.19.0              |DONE      |Manifest: NOSIGNATURE         Tropicraft-9.6.3.jar                              |Tropicraft                    |tropicraft                    |9.6.3               |DONE      |Manifest: NOSIGNATURE         blue_skies-1.20.1-1.3.31.jar                      |Blue Skies                    |blue_skies                    |1.3.31              |DONE      |Manifest: NOSIGNATURE         dimasctetracompat-1.20.1-1.5.0.0.jar              |Dimensional Ascension Tetra Co|dimasctetracompat             |1.5.0.0             |DONE      |Manifest: NOSIGNATURE         geckolib-forge-1.20.1-4.7.1.2.jar                 |GeckoLib 4                    |geckolib                      |4.7.1.2             |DONE      |Manifest: NOSIGNATURE         Oh-The-Biomes-Weve-Gone-Forge-1.5.11.jar          |Oh The Biomes We've Gone      |biomeswevegone                |1.5.11              |DONE      |Manifest: NOSIGNATURE         creeperoverhaul-3.0.2-forge.jar                   |Creeper Overhaul              |creeperoverhaul               |3.0.2               |DONE      |Manifest: NOSIGNATURE         ars_nouveau-1.20.1-4.12.6-all.jar                 |Ars Nouveau                   |ars_nouveau                   |4.12.6              |DONE      |Manifest: NOSIGNATURE         crittersandcompanions-forge-2.2.2.jar             |Critters and Companions       |crittersandcompanions         |2.2.2               |DONE      |Manifest: NOSIGNATURE         aether-1.20.1-1.5.2-neoforge.jar                  |The Aether                    |aether                        |1.20.1-1.5.2-neoforg|DONE      |Manifest: NOSIGNATURE         aetheric_tetranomicon-1.2.0-1.20.1.jar            |Aetheric Tetranomicon         |aetheric_tetranomicon         |1.2.0-1.20.1        |DONE      |Manifest: NOSIGNATURE         lost_aether_content-1.20.1-1.2.3.jar              |Aether: Lost Content          |lost_aether_content           |1.2.3               |DONE      |Manifest: NOSIGNATURE         deep_aether-1.20.1-1.1.5.jar                      |Deep Aether                   |deep_aether                   |1.20.1-1.1.5        |DONE      |Manifest: NOSIGNATURE         aeroblender-1.20.1-1.0.2-rc1-neoforge.jar         |AeroBlender                   |aeroblender                   |1.20.1-1.0.2-rc1-neo|DONE      |Manifest: NOSIGNATURE         ancient_aether-0.9.10.jar                         |Ancient Aether                |ancient_aether                |0.9.10              |DONE      |Manifest: NOSIGNATURE         naturalist-5.0pre2+forge-1.20.1.jar               |Naturalist                    |naturalist                    |5.0pre2             |DONE      |Manifest: NOSIGNATURE         soulbound-forge-1.0.0+1.20.1.jar                  |Soulbound                     |soulbound                     |1.0.0               |DONE      |Manifest: NOSIGNATURE         dynamiclights-1.20.1.2.jar                        |Dynamic Lights                |dynamiclights                 |1.20.1.2            |DONE      |Manifest: NOSIGNATURE         Nether's Overhaul-1.20.1_V1.3.6.jar               |Nether's Overhaul             |netheroverhaul                |1.3.6               |DONE      |Manifest: NOSIGNATURE         HorseExpert-v8.1.1-1.20.1-Forge.jar               |Horse Expert                  |horseexpert                   |8.1.1               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         PaperDoll-v8.0.0-1.20.1-Forge.jar                 |Paper Doll                    |paperdoll                     |8.0.0               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         golemsarefriends-1.20.0-1.0.1.jar                 |Golems Are Friends Not Fodder |golemsarefriends              |1.20.0-1.0.1        |DONE      |Manifest: NOSIGNATURE         Controlling-forge-1.20.1-12.0.2.jar               |Controlling                   |controlling                   |12.0.2              |DONE      |Manifest: NOSIGNATURE         citadel-2.6.1-1.20.1.jar                          |Citadel                       |citadel                       |2.6.1               |DONE      |Manifest: NOSIGNATURE         Rats-1.20.1-8.1.3.jar                             |Rats                          |rats                          |1.20.1-8.1.3        |DONE      |Manifest: NOSIGNATURE         alexsmobs-1.22.9.jar                              |Alex's Mobs                   |alexsmobs                     |1.22.9              |DONE      |Manifest: NOSIGNATURE         iceandfire-2.1.13-1.20.1-beta-5.jar               |Ice and Fire                  |iceandfire                    |2.1.13-1.20.1       |DONE      |Manifest: NOSIGNATURE         forge-1.20.1-47.4.0-universal.jar                 |Forge                         |forge                         |47.4.0              |DONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90         Auroras-1.20.1-1.6.2.jar                          |Auroras                       |auroras                       |1.6.2               |DONE      |Manifest: NOSIGNATURE         appleskin-forge-mc1.20.1-2.5.1.jar                |AppleSkin                     |appleskin                     |2.5.1+mc1.20.1      |DONE      |Manifest: NOSIGNATURE         AkashicTome-1.7-27.jar                            |Akashic Tome                  |akashictome                   |1.7-27              |DONE      |Manifest: NOSIGNATURE         dragonseeker-1.2.0-1.20.1.jar                     |Dragonseeker                  |dragonseeker                  |1.2.0-1.20.1        |DONE      |Manifest: NOSIGNATURE         Zeta-1.0-30.jar                                   |Zeta                          |zeta                          |1.0-30              |DONE      |Manifest: NOSIGNATURE         Aquaculture-1.20.1-2.5.5.jar                      |Aquaculture 2                 |aquaculture                   |2.5.5               |DONE      |Manifest: NOSIGNATURE         fabric-data-attachment-api-v1-1.0.0+30ef839e77.jar|Fabric Data Attachment API (v1|fabric_data_attachment_api_v1 |1.0.0+30ef839e77    |DONE      |Manifest: NOSIGNATURE         mixinextras-forge-0.4.1.jar                       |MixinExtras                   |mixinextras                   |0.4.1               |DONE      |Manifest: NOSIGNATURE         AetherVillages-1.20.1-1.0.7-forge.jar             |Aether Villages               |aether_villages               |1.0.7               |DONE      |Manifest: NOSIGNATURE         endercrop-1.20.1-1.7.0.jar                        |Ender Crop                    |endercrop                     |1.20.1-1.7.0        |DONE      |Manifest: NOSIGNATURE         storagedelight-25.03.09-1.20-forge.jar            |Storage Delight               |storagedelight                |25.03.09-1.20-forge |DONE      |Manifest: NOSIGNATURE         Twigs-1.20.1-3.1.0.jar                            |Twigs                         |twigs                         |1.20.1-3.1.1        |DONE      |Manifest: NOSIGNATURE         MinersMoon1.20.jar                                |Miner's Moon                  |minersmoon                    |1.20.1              |DONE      |Manifest: NOSIGNATURE         Waddles-1.20.1-0.9.4.jar                          |Waddles                       |waddles                       |0.9.4               |DONE      |Manifest: NOSIGNATURE         jeed-1.20-2.2.5.jar                               |Just Enough Effects Descriptio|jeed                          |1.20-2.2.5          |DONE      |Manifest: NOSIGNATURE         hauntedharvest-1.20-3.2.0.jar                     |Haunted Harvest               |hauntedharvest                |1.20-3.2.0          |DONE      |Manifest: NOSIGNATURE         dummmmmmy-1.20-2.0.6.jar                          |MmmMmmMmmmmm                  |dummmmmmy                     |1.20-2.0.6          |DONE      |Manifest: NOSIGNATURE         fabric-content-registries-v0-4.0.11+a670df1e77.jar|Fabric Content Registries (v0)|fabric_content_registries_v0  |4.0.11+a670df1e77   |DONE      |Manifest: NOSIGNATURE         twilightforest-1.20.1-4.3.2508-universal.jar      |The Twilight Forest           |twilightforest                |4.3.2508            |DONE      |Manifest: NOSIGNATURE         sodiumdynamiclights-forge-1.0.10-1.20.1.jar       |Sodium Dynamic Lights         |sodiumdynamiclights           |1.0.9               |DONE      |Manifest: NOSIGNATURE         better_climbing-forge-3.jar                       |Better Climbing               |better_climbing               |3                   |DONE      |Manifest: NOSIGNATURE         FarmersDelight-1.20.1-1.2.7.jar                   |Farmer's Delight              |farmersdelight                |1.20.1-1.2.7        |DONE      |Manifest: NOSIGNATURE         corn_delight-1.1.6-1.20.1.jar                     |Corn Delight                  |corn_delight                  |1.1.6-1.20.1        |DONE      |Manifest: NOSIGNATURE         largemeals-1.20.1-1.3.0.jar                       |Large Meals                   |largemeals                    |1.20.1-1.3.0        |DONE      |Manifest: NOSIGNATURE         ends_delight-1.20.1-2.4.jar                       |End's Delight                 |ends_delight                  |2.4                 |DONE      |Manifest: NOSIGNATURE         chefs-delight-1.0.3-forge-1.20.1.jar              |Chefs Delight                 |chefsdelight                  |1.0.3-forge-1.20.1  |DONE      |Manifest: NOSIGNATURE         culturaldelights-0.16.4.jar                       |Cultural Delights             |culturaldelights              |0.16.4              |DONE      |Manifest: NOSIGNATURE         curious_armor_stands-1.20-5.1.0.jar               |Curious Armor Stands          |curious_armor_stands          |1.20-5.1.0          |DONE      |Manifest: NOSIGNATURE         endersdelight-forge-1.20.1-1.1.2.jar              |Ender's Delight               |endersdelight                 |1.1.2               |DONE      |Manifest: NOSIGNATURE         treasure2-1.20.1-3.12.0.jar                       |Treasure2                     |treasure2                     |3.12.0              |DONE      |Manifest: NOSIGNATURE         gottschcore-1.20.1-2.3.0.jar                      |GottschCore                   |gottschcore                   |2.3.0               |DONE      |Manifest: NOSIGNATURE         mcw-fences-1.2.0-1.20.1forge.jar                  |Macaw's Fences and Walls      |mcwfences                     |1.2.0               |DONE      |Manifest: NOSIGNATURE         spartanundergarden-1.20.1-1.1.0.jar               |Spartan Weaponry: Undergarden |spartanundergarden            |1.20.1-1.1.0        |DONE      |Manifest: NOSIGNATURE         reach-entity-attributes-2.4.0.jar                 |Reach Entity Attributes       |reach_entity_attributes       |2.4.0               |DONE      |Manifest: NOSIGNATURE         zmedievalmusic-1.20.1-2.1.jar                     |medievalmusic mod             |medievalmusic                 |1.20.1-2.1          |DONE      |Manifest: NOSIGNATURE         villagespawnpoint-1.20.1-4.6.jar                  |Village Spawn Point           |villagespawnpoint             |4.6                 |DONE      |Manifest: NOSIGNATURE         spartantoolkit-1.20.1-1.5.2.jar                   |Spartan Weaponry Addon Toolkit|spartantoolkit                |1.20.1-1.5.2        |DONE      |Manifest: NOSIGNATURE         Patchouli-1.20.1-84.1-FORGE.jar                   |Patchouli                     |patchouli                     |1.20.1-84.1-FORGE   |DONE      |Manifest: NOSIGNATURE         collective-1.20.1-8.3.jar                         |Collective                    |collective                    |8.3                 |DONE      |Manifest: NOSIGNATURE         BetterThirdPerson-Forge-1.20-1.9.0.jar            |Better Third Person           |betterthirdperson             |1.9.0               |DONE      |Manifest: NOSIGNATURE         resourcefullib-forge-1.20.1-2.1.29.jar            |Resourceful Lib               |resourcefullib                |2.1.29              |DONE      |Manifest: NOSIGNATURE         eatinganimation-1.20.1-5.1.0.jar                  |Eating Animation              |eatinganimation               |5.1.0               |DONE      |Manifest: NOSIGNATURE         SpartanWeaponry-1.20.1-forge-3.1.3-all.jar        |Spartan Weaponry              |spartanweaponry               |3.1.3               |DONE      |Manifest: NOSIGNATURE         seasonhud-forge-1.20.1-1.13.2.jar                 |SeasonHUD                     |seasonhud                     |1.13.2              |DONE      |Manifest: NOSIGNATURE         deeperdarker-forge-1.20.1-1.3.3.jar               |Deeper and Darker             |deeperdarker                  |1.3.3               |DONE      |Manifest: NOSIGNATURE         architectury-9.2.14-forge.jar                     |Architectury                  |architectury                  |9.2.14              |DONE      |Manifest: NOSIGNATURE         BambooEverything-forge-3.0.3+mc1.20.1.jar         |Bamboo Everything             |bambooeverything              |3.0.3+mc1.20.1      |DONE      |Manifest: NOSIGNATURE         letsdo-API-forge-1.2.15-forge.jar                 |[Let's Do] API                |doapi                         |1.2.15              |DONE      |Manifest: NOSIGNATURE         jecalculation-forge-1.20.1-4.0.4.jar              |Just Enough Calculation       |jecalculation                 |4.0.4               |DONE      |Manifest: NOSIGNATURE         findme-3.2.1-forge.jar                            |FindMe                        |findme                        |3.2.1               |DONE      |Manifest: NOSIGNATURE         letsdo-brewery-forge-1.1.9.jar                    |[Let's Do] Brewery            |brewery                       |1.1.9               |DONE      |Manifest: NOSIGNATURE         letsdo-meadow-forge-1.3.24.jar                    |[Let's Do] Meadow             |meadow                        |1.3.24              |DONE      |Manifest: NOSIGNATURE         jei-1.20.1-forge-15.20.0.106.jar                  |Just Enough Items             |jei                           |15.20.0.106         |DONE      |Manifest: NOSIGNATURE         jamlib-forge-1.3.5+1.20.1.jar                     |JamLib                        |jamlib                        |1.3.5+1.20.1        |DONE      |Manifest: NOSIGNATURE         rightclickharvest-forge-4.5.3+1.20.1.jar          |Right Click Harvest           |rightclickharvest             |4.5.3+1.20.1        |DONE      |Manifest: NOSIGNATURE         fabric-loot-api-v2-1.2.1+eb28f93e77.jar           |Fabric Loot API (v2)          |fabric_loot_api_v2            |1.2.1+eb28f93e77    |DONE      |Manifest: NOSIGNATURE         ConnectorExtras-1.11.2+1.20.1.jar                 |Connector Extras              |connectorextras               |1.11.2+1.20.1       |DONE      |Manifest: NOSIGNATURE         umbral_skies-1.3.jar                              |Umbral Skies                  |umbral_skies                  |1.3                 |DONE      |Manifest: NOSIGNATURE         refurbished_furniture-forge-1.20.1-1.0.12.jar     |MrCrayfish's Furniture Mod: Re|refurbished_furniture         |1.0.12              |DONE      |Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         fabric-networking-api-v1-1.3.11+503a202477.jar    |Fabric Networking API (v1)    |fabric_networking_api_v1      |1.3.11+503a202477   |DONE      |Manifest: NOSIGNATURE         fabric-lifecycle-events-v1-2.2.22+afab492177.jar  |Fabric Lifecycle Events (v1)  |fabric_lifecycle_events_v1    |2.2.22+afab492177   |DONE      |Manifest: NOSIGNATURE         TradingPost-v8.0.2-1.20.1-Forge.jar               |Trading Post                  |tradingpost                   |8.0.2               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         villagesandpillages-forge-mc1.20.1-1.0.2.jar      |Villages & Pillages           |villagesandpillages           |1.0.2               |DONE      |Manifest: NOSIGNATURE         rhino-forge-2001.2.3-build.10.jar                 |Rhino                         |rhino                         |2001.2.3-build.10   |DONE      |Manifest: NOSIGNATURE         Festive_Delight_1.3_Forge_1.20.1.jar              |Festive Delight               |festive_delight               |1.3.0               |DONE      |Manifest: NOSIGNATURE         jmi-forge-1.20.1-0.14-48.jar                      |JourneyMap Integration        |jmi                           |1.20.1-0.14-48      |DONE      |Manifest: NOSIGNATURE         amendments-1.20-1.2.19.jar                        |Amendments                    |amendments                    |1.20-1.2.19         |DONE      |Manifest: NOSIGNATURE         blueflame-1.20.0-1.0.3.jar                        |Blue Flame Burning            |blueflame                     |1.20.0-1.0.3        |DONE      |Manifest: NOSIGNATURE         additionallanterns-1.1.1a-forge-mc1.20.jar        |Additional Lanterns           |additionallanterns            |1.1.1a              |DONE      |Manifest: NOSIGNATURE         Rainbows-1.20.1-1.5.jar                           |Rainbows                      |rainbows                      |1.5                 |DONE      |Manifest: NOSIGNATURE         waystones-forge-1.20.1-14.1.11.jar                |Waystones                     |waystones                     |14.1.11             |DONE      |Manifest: NOSIGNATURE         journeymap-1.20.1-5.10.3-forge.jar                |Journeymap                    |journeymap                    |5.10.3              |DONE      |Manifest: NOSIGNATURE         comforts-forge-6.4.0+1.20.1.jar                   |Comforts                      |comforts                      |6.4.0+1.20.1        |DONE      |Manifest: NOSIGNATURE         fabric-mining-level-api-v1-2.1.50+561530ec77.jar  |Fabric Mining Level API (v1)  |fabric_mining_level_api_v1    |2.1.50+561530ec77   |DONE      |Manifest: NOSIGNATURE         configured-forge-1.20.1-2.2.3.jar                 |Configured                    |configured                    |2.2.3               |DONE      |Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         default_skill_trees-1.1.jar                       |Default Skill Trees           |default_skill_trees           |1.1                 |DONE      |Manifest: NOSIGNATURE         YungsBetterDesertTemples-1.20-Forge-3.0.3.jar     |YUNG's Better Desert Temples  |betterdeserttemples           |1.20-Forge-3.0.3    |DONE      |Manifest: NOSIGNATURE         mapperbase-1.20.1-6.0.0.0.jar                     |Mapper Base                   |mapperbase                    |1.20.1-6.0.0.0      |DONE      |Manifest: NOSIGNATURE         netherdepthsupgrade-3.1.5-1.20.jar                |Nether Depths Upgrade         |netherdepthsupgrade           |3.1.5-1.20          |DONE      |Manifest: NOSIGNATURE         blueprint-1.20.1-7.1.3.jar                        |Blueprint                     |blueprint                     |7.1.3               |DONE      |Manifest: NOSIGNATURE         savage_and_ravage-1.20.1-6.0.0.jar                |Savage & Ravage               |savage_and_ravage             |6.0.0               |DONE      |Manifest: NOSIGNATURE         clayworks-1.20.1-3.0.4.jar                        |Clayworks                     |clayworks                     |3.0.4               |DONE      |Manifest: NOSIGNATURE         personality-1.20.1-4.1.0.jar                      |Personality                   |personality                   |4.1.0               |DONE      |Manifest: NOSIGNATURE         autumnity-1.20.1-5.0.2.jar                        |Autumnity                     |autumnity                     |5.0.2               |DONE      |Manifest: NOSIGNATURE         environmental-1.20.1-4.0.1.jar                    |Environmental                 |environmental                 |4.0.1               |DONE      |Manifest: NOSIGNATURE         buzzier_bees-1.20.1-6.0.1.jar                     |Buzzier Bees                  |buzzier_bees                  |6.0.1               |DONE      |Manifest: NOSIGNATURE         CoffeeDelight-Forge-1.20.1-1.5.2.jar              |Coffee Delight                |coffee_delight                |1.6                 |DONE      |Manifest: NOSIGNATURE         moredelight-25.01.13-1.20-forge.jar               |More Delight                  |moredelight                   |25.01.13-1.20-forge |DONE      |Manifest: NOSIGNATURE         spartantwilight-1.20.1-3.1.0.jar                  |Spartan Weaponry: Twilight For|spartantwilight               |3.1.0               |DONE      |Manifest: NOSIGNATURE         ramadandelight-1.4.jar                            |Ramadan Delight               |ramadandelight                |1.4                 |DONE      |Manifest: NOSIGNATURE         libertyvillagers-2.0.0+forge+1.20.1.jar           |Liberty's Villagers           |libertyvillagers              |2.0.0+forge+1.20.1  |DONE      |Manifest: NOSIGNATURE         FasterLadderClimbing-1.20.1-0.2.10.jar            |Faster Ladder Climbing        |fasterladderclimbing          |0.2.10              |DONE      |Manifest: NOSIGNATURE         fabric-transitive-access-wideners-v1-4.3.1+1880499|Fabric Transitive Access Widen|fabric_transitive_access_widen|4.3.1+1880499877    |DONE      |Manifest: NOSIGNATURE         illagersweararmor-1.20.1-1.4.0.jar                |Illagers Wear Armor           |zillagersweararmor            |1.20.1-1.4.0        |DONE      |Manifest: NOSIGNATURE         client-1.20.1-20230612.114412-srg.jar             |Minecraft                     |minecraft                     |1.20.1              |DONE      |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f         dtkupd-1.4-forge-1.20.1.jar                       |DTKUpdate                     |dtkupd                        |1.4                 |DONE      |Manifest: NOSIGNATURE         cofh_core-1.20.1-11.0.2.56.jar                    |CoFH Core                     |cofh_core                     |11.0.2              |DONE      |Manifest: NOSIGNATURE         endergetic-1.20.1-5.0.1.jar                       |The Endergetic Expansion      |endergetic                    |5.0.1               |DONE      |Manifest: NOSIGNATURE         commonality-1.20.1-7.0.0.jar                      |Commonality                   |commonality                   |7.0.0               |DONE      |Manifest: NOSIGNATURE         FarmersStructures-1.0.3-1.20.jar                  |FarmersStructures             |farmers_structures            |1.0.0               |DONE      |Manifest: NOSIGNATURE         ls_spooky_paintings-2.1.1-forge-1.20.1.jar        |Spooky Paintings              |ls_spooky_paintings           |2.1.1               |DONE      |Manifest: NOSIGNATURE         DramaticDoors-QuiFabrge-1.20.1-3.3.1.jar          |Dramatic Doors                |dramaticdoors                 |1.20.1-3.3.1        |DONE      |Manifest: NOSIGNATURE         archers_paradox-1.20.1-5.0.0.17.jar               |Archer's Paradox              |archers_paradox               |5.0.0               |DONE      |Manifest: NOSIGNATURE         abnormals_delight-1.20.1-5.0.0.jar                |Abnormals Delight             |abnormals_delight             |5.0.0               |DONE      |Manifest: NOSIGNATURE         aquaculturedelight-1.1.1-forge-1.20.1.jar         |Aquaculture Delight           |aquaculturedelight            |1.1.1               |DONE      |Manifest: NOSIGNATURE         upgrade_aquatic-1.20.1-6.0.3.jar                  |Upgrade Aquatic               |upgrade_aquatic               |6.0.3               |DONE      |Manifest: NOSIGNATURE         aquamirae_delight-1.5.2-forge-1.20.1.jar          |Aquamirae Delight             |aquamirae_delight             |1.5.2               |DONE      |Manifest: NOSIGNATURE         undergardendelight-1.1.2-forge-1.20.1.jar         |Undergarden Delight           |undergardendelight            |1.1.2               |DONE      |Manifest: NOSIGNATURE         ensorcellation-1.20.1-5.0.2.24.jar                |Ensorcellation                |ensorcellation                |5.0.2               |DONE      |Manifest: NOSIGNATURE         alexscaves-2.0.2.jar                              |Alex's Caves                  |alexscaves                    |2.0.2               |DONE      |Manifest: NOSIGNATURE         pumpeddesertremake-2.0.0-forge-1.20.1.jar         |Pumped Desert Remake          |pumpeddesertremake            |2.0.0               |DONE      |Manifest: NOSIGNATURE         EnchantmentDescriptions-Forge-1.20.1-17.1.19.jar  |EnchantmentDescriptions       |enchdesc                      |17.1.19             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         radiantgear-forge-2.2.0+1.20.1.jar                |Radiant Gear                  |radiantgear                   |2.2.0+1.20.1        |DONE      |Manifest: NOSIGNATURE         moonlight-1.20-2.13.82-forge.jar                  |Moonlight Library             |moonlight                     |1.20-2.13.82        |DONE      |Manifest: NOSIGNATURE         ToolBelt-1.20.1-1.20.02.jar                       |Tool Belt                     |toolbelt                      |1.20.02             |DONE      |Manifest: NOSIGNATURE         farmers-cutting-oh-the-biomes-weve-gone-1.20.1-1.1|Farmer's Cutting: Oh The Biome|mr_farmers_cuttingohthebiomesw|1.20.1-1.1-forge    |DONE      |Manifest: NOSIGNATURE         mixinsquared-forge-0.1.1.jar                      |MixinSquared                  |mixinsquared                  |0.1.1               |DONE      |Manifest: NOSIGNATURE         Jade-1.20.1-Forge-11.13.1.jar                     |Jade                          |jade                          |11.13.1+forge       |DONE      |Manifest: NOSIGNATURE         snowyspirit-1.20-3.0.10.jar                       |Snowy Spirit                  |snowyspirit                   |1.20-3.0.10         |DONE      |Manifest: NOSIGNATURE         l2harvester-0.1.0.jar                             |L2Harvester                   |l2harvester                   |0.1.0               |DONE      |Manifest: NOSIGNATURE         displaydelight-1.2.0.jar                          |Display Delight               |displaydelight                |1.2.0               |DONE      |Manifest: NOSIGNATURE         nethersdelight-1.20.1-4.0.jar                     |Nether's Delight              |nethersdelight                |1.20.1-4.0          |DONE      |Manifest: NOSIGNATURE         lootintegrations_yungs-1.3.jar                    |lootintegrations_yungs mod    |lootintegrations_yungs        |1                   |DONE      |Manifest: NOSIGNATURE         ThisRocks-1.20.1-1.5.1.jar                        |This Rocks! (Forge)           |rocks                         |1.5.1               |DONE      |Manifest: NOSIGNATURE         BarteringStation-v8.0.0-1.20.1-Forge.jar          |Bartering Station             |barteringstation              |8.0.0               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         Ribbits-1.20.1-Forge-3.0.4.jar                    |Ribbits                       |ribbits                       |1.20.1-Forge-3.0.4  |DONE      |Manifest: NOSIGNATURE         Iceberg-1.20.1-forge-1.1.25.jar                   |Iceberg                       |iceberg                       |1.1.25              |DONE      |Manifest: NOSIGNATURE         Quark-4.0-462.jar                                 |Quark                         |quark                         |4.0-462             |DONE      |Manifest: NOSIGNATURE         supplementaries-1.20-3.1.26.jar                   |Supplementaries               |supplementaries               |1.20-3.1.26         |DONE      |Manifest: NOSIGNATURE         Delightful-1.20.1-3.7.1.jar                       |Delightful                    |delightful                    |3.7.1               |DONE      |Manifest: NOSIGNATURE         suppsquared-1.20-1.1.21.jar                       |Supplementaries Squared       |suppsquared                   |1.20-1.1.21         |DONE      |Manifest: NOSIGNATURE         woodworks-1.20.1-3.0.2.jar                        |Woodworks                     |woodworks                     |3.0.2               |DONE      |Manifest: NOSIGNATURE         mutil-1.20.1-6.2.0.jar                            |mutil                         |mutil                         |6.2.0               |DONE      |Manifest: NOSIGNATURE         brutalbosses-1.20.1-8.0.jar                       |brutalbosses mod              |brutalbosses                  |1.20.1-8.0          |DONE      |Manifest: NOSIGNATURE         legendarycreatures-1.20.1-1.0.15.jar              |Legendary Creatures           |legendarycreatures            |1.20.1-1.0.15       |DONE      |Manifest: NOSIGNATURE         inventoryhud.forge.1.20.1-3.4.26.jar              |Inventory HUD+                |inventoryhud                  |3.4.26              |DONE      |Manifest: NOSIGNATURE         UniversalEnchants-v8.0.0-1.20.1-Forge.jar         |Universal Enchants            |universalenchants             |8.0.0               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         BetterTridents-v8.0.1-1.20.1-Forge.jar            |Better Tridents               |bettertridents                |8.0.1               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         alexsdelight-1.5.jar                              |Alex's Delight                |alexsdelight                  |1.5                 |DONE      |Manifest: NOSIGNATURE         yet_another_config_lib_v3-3.6.6+1.20.1-forge.jar  |YetAnotherConfigLib           |yet_another_config_lib_v3     |3.6.6+1.20.1-forge  |DONE      |Manifest: NOSIGNATURE         apexcore-1.20.1-10.0.0.jar                        |ApexCore                      |apexcore                      |10.0.0              |DONE      |Manifest: NOSIGNATURE         fantasyfurniture-1.20.1-9.0.0.jar                 |Fantasy's Furniture           |fantasyfurniture              |9.0.0               |DONE      |Manifest: NOSIGNATURE         CrabbersDelight-1.20.1-1.1.7e.jar                 |Crabber's Delight             |crabbersdelight               |1.1.7e              |DONE      |Manifest: NOSIGNATURE         emi-bridge-1.11.2+1.20.1.jar                      |Connector Extras EMI Bridge   |connectorextras_emi_bridge    |1.11.2+1.20.1       |DONE      |Manifest: NOSIGNATURE         healingcampfire-1.20.1-6.2.jar                    |Healing Campfire              |healingcampfire               |6.2                 |DONE      |Manifest: NOSIGNATURE         fabric-data-generation-api-v1-12.3.4+369cb3a477.ja|Fabric Data Generation API (v1|fabric_data_generation_api_v1 |12.3.4+369cb3a477   |DONE      |Manifest: NOSIGNATURE         fabric-events-interaction-v0-0.6.2+0d0bd5a777.jar |Fabric Events Interaction (v0)|fabric_events_interaction_v0  |0.6.2+0d0bd5a777    |DONE      |Manifest: NOSIGNATURE         PresenceFootsteps-1.20.1-1.9.1-beta.1.jar         |Presence Footsteps (Forge)    |presencefootsteps             |1.20.1-1.9.1-beta.1 |DONE      |Manifest: NOSIGNATURE     Crash Report UUID: d500aa9a-f821-445e-85be-a2b3186aa14e     FML: 47.4     Forge: net.minecraftforge:47.4.0     Kiwi Modules:          kiwi:block_components         kiwi:block_templates         kiwi:contributors         kiwi:data         kiwi:item_templates         snowrealmagic:core
    • When I tried to open the game, it crashed and these errors popped up. I checked for any duplicate mods and I couldn't find any. Mod list:  https://paste.pics/a7385d4ce369bc9fc96625d277401701 https://paste.pics/44d6f1749b8e2a84300e73e2717c6086 https://paste.pics/9b06c1f054bc099fccaef73a07489aba https://paste.pics/17be358309261b636fbc9dc9a3df3ffe https://paste.pics/b40d6dc1177081ef7befc53e215151f6 https://paste.pics/05777d08113b89bc6c20872bdd420305   Here's my latest.log: https://mclo.gs/svzfiMH      
    • شو هي مواصفات جهازك و كمان بعات المودز اللي عم تستخدمهن
    • When you make a change and it doesn't work, always post new logs.
  • Topics

  • Who's Online (See full list)

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

Important Information

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