Jump to content

[1.12.2] pack.mcmeta not loading


_Stamp_

Recommended Posts

For the past couple days, I have been trying to figure out why my language file, for internalisation, hasn't been loading; I think I have found the reason why, in the debug files for Minecraft I see that pack.mcmeta cannot be loaded, therefore, I assume the language file will not be found correctly causing it to not load.

Github Repo: 

https://github.com/nibble90/MineSuperior

Here is a tree of the files:

Spoiler
└───src
    └───main
        ├───java
        │   └───com
        │       └───stamp
        │           └───minesuperior
        │               ├───proxy
        │               └───util
        └───resources
            └───assests
                └───minesuperior
                    └───lang

And here is the code:

Main.java:

package com.stamp.minesuperior;

import org.jline.utils.Log;

import com.stamp.minesuperior.util.Reference;
import com.stamp.minesuperior.KeyInputHandler;
import com.stamp.minesuperior.proxy.IProxy;

import net.minecraftforge.common.MinecraftForge;
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.SERVER_PROXY_CLASS)
	public static IProxy proxy;
	@EventHandler
	public static void PreInit(FMLPreInitializationEvent event) {
		proxy.registerKeys();
//		MinecraftForge.EVENT_BUS.register(new KeyInputHandler());
//		KeyBindings.register();
		Log.info("[MS Utilities] PreInit completed");
	}
	@EventHandler
	public void init(FMLInitializationEvent event) {
//		proxy.registerKeys();
//		FMLCommonHandler.instance().bus().register(new KeyInputHandler());
		MinecraftForge.EVENT_BUS.register(new KeyInputHandler());
		Log.info("[MS Utilities] Init Completed");
	}
	@EventHandler
	public static void PostInit(FMLPostInitializationEvent event) {
		Log.info("[MS Utilities] PostInit Completed");
	}
}

KeyBindings.java

package com.stamp.minesuperior;

import org.lwjgl.input.Keyboard;

import net.minecraft.client.settings.KeyBinding;

public class KeyBindings {
	private static final String acl = "key.autoClickLeft";
	private static final String acr = "key.autoClickRight";
	private static final String am = "key.autoMine";
	private static final String cat = "key.categories.utilities";
	public static KeyBinding autoClickLeft = new KeyBinding(acl, Keyboard.KEY_DIVIDE, cat);
	public static KeyBinding autoClickRight = new KeyBinding(acr, Keyboard.KEY_SUBTRACT, cat);
	public static KeyBinding autoMine = new KeyBinding(am, Keyboard.KEY_MULTIPLY, cat);
//	public static void register() {
//		ClientRegistry.registerKeyBinding(autoClickLeft);
//		ClientRegistry.registerKeyBinding(autoClickRight);
//		ClientRegistry.registerKeyBinding(autoMine);
//	}
//	
}

KeyInputHandler.java:

package com.stamp.minesuperior;

import net.minecraft.client.Minecraft;
import net.minecraft.util.text.TextComponentString;
import net.minecraft.util.text.TextFormatting;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.gameevent.TickEvent.ClientTickEvent;

public class KeyInputHandler {
	@SubscribeEvent
    public void onKeyInput(ClientTickEvent event)
    {
        if(KeyBindings.autoClickLeft.isPressed()){
            Minecraft.getMinecraft().player.sendMessage(new TextComponentString(TextFormatting.DARK_RED + "[MS Utilities] " + TextFormatting.RED + "Left AutoClicker Button Pressed"));
        } else if(KeyBindings.autoClickRight.isPressed()){
        	Minecraft.getMinecraft().player.sendMessage(new TextComponentString(TextFormatting.DARK_RED + "[MS Utilities] " + TextFormatting.RED + "Right AutoClicker Button Pressed"));
        } else if(KeyBindings.autoMine.isPressed()) {
        	Minecraft.getMinecraft().player.sendMessage(new TextComponentString(TextFormatting.DARK_RED + "[MS Utilities] " + TextFormatting.RED + "AutoMiner Button Pressed"));
        }
    }
}

ClientProxy.java:

package com.stamp.minesuperior.proxy;

import com.stamp.minesuperior.KeyBindings;
import net.minecraftforge.fml.client.registry.ClientRegistry;

public class ClientProxy implements IProxy{
//	@Override
//	public void init() {
//		this.registerKeys();
//	}
	@Override
	public void registerKeys() {
//		MinecraftForge.EVENT_BUS.register(new KeyInputHandler());
		ClientRegistry.registerKeyBinding(KeyBindings.autoClickLeft);
		ClientRegistry.registerKeyBinding(KeyBindings.autoClickRight);
		ClientRegistry.registerKeyBinding(KeyBindings.autoMine);
	}
	
}

IProxy.java:

package com.stamp.minesuperior.proxy;

public interface IProxy {
	
	public abstract void registerKeys();
	
}

ServerProxy.java:

package com.stamp.minesuperior.proxy;

public class ServerProxy implements IProxy{

	@Override
	public void registerKeys() {
		// TODO Auto-generated method stub
		
	}

}

Reference.java:

package com.stamp.minesuperior.util;

public class Reference {
	public static final String MOD_ID = "minesuperior";
	public static final String NAME = "MineSuperior";
	public static final String VERSION = "1.5";
	public static final String ACCEPTED_VERSIONS = "[1.12.2]";
	public static final String CLIENT_PROXY_CLASS = "com.stamp.minesuperior.proxy.ClientProxy";
	public static final String SERVER_PROXY_CLASS = "com.stamp.minesuperior.proxy.ServerProxy";

}

en_gb.lang:

key.categories.utilities=MineSuperior Utilities
key.autoClickLeft=Left AutoClick
key.autoClickRight=Right AutoClick
key.autoMine=AutoMine

mcmod.info:

[
{
  "modid": "minesuperior",
  "name": "MineSuperior Utilities",
  "description": "A utility mod built for use with MineSuperior.",
  "version": "1.5",
  "mcversion": "1.12.2",
  "url": "",
  "updateUrl": "",
  "authorList": ["_Stamp_"],
  "credits": "_Stamp_ for making this mod",
  "logoFile": "",
  "screenshots": [],
  "dependencies": []
}
]

pack.mcmeta:

{
    "pack": {
        "description": "MineSuperior Utilities",
        "pack_format": 3,
        "_comment": "A pack_format of 3 should be used starting with Minecraft 1.11. All resources, including language files, should be lowercase (eg: en_us.lang). A pack_format of 2 will load your mod resources with LegacyV2Adapter, which requires language files to have uppercase letters (eg: en_US.lang)."
    }
}

Most recent log:

Spoiler

[18:20:26] [main/INFO] [GradleStart]: Extra: []
[18:20:26] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/nibbl/.gradle/caches/minecraft/assets, --assetIndex, 1.12, --accessToken{REDACTED}, --version, 1.12.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[18:20:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[18:20:26] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[18:20:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[18:20:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[18:20:26] [main/DEBUG] [FML]: Injecting tracing printstreams for STDOUT/STDERR.
[18:20:26] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2838 for Minecraft 1.12.2 loading
[18:20:26] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_211, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_211\jre
[18:20:26] [main/DEBUG] [FML]: Java classpath at launch is:
[18:20:26] [main/DEBUG] [FML]:     D:\ECLIPSE WORKSPACE\Minecraft Modding\MineSuperior\bin
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\minecraft\net\minecraftforge\forge\1.12.2-14.23.5.2838\snapshot\20171003\forgeSrc-1.12.2-14.23.5.2838.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.1\f7be08ec23c21485b9b5a1cf1654c2ec8c58168d\jsr305-3.0.1.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\1.1\aef610b34a1be37fa851825f12372b78424d8903\patchy-1.1.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\4.4.0\cb208278274bf12ebdb56c61bd7407e6f774d65a\jna-4.4.0.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.3\cdd846cfc4e0f7eefafc02c0f5dce32b9303aa2a\jopt-simple-5.0.3.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.1.9.Final\97860965d6a0a6b98e7f569f3f966727b8db75\netty-all-4.1.9.Final.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\21.0\3a3d111be1be1b745edfa7d91678a12d7ed38709\guava-21.0.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.5\6c6c702c89bfff3cd9e80b04d668c5e190d588c6\commons-lang3-3.5.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.5\2852e6e05fbb95076fc091f6d1780f1f8fe35e0f\commons-io-2.5.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.10\4b95f4897fa13f2cd904aee711aeafc0c5295cd8\commons-codec-1.10.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.8.0\c4ba5371a29ac9b2ad6129b1d39ea38750043eff\gson-2.8.0.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.25\9834cdf236c22e84b946bba989e2f94ef5897c3c\authlib-1.5.25.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.10.22\bd0dccebdf3744c75f1ca20063f16e8f7d5e663f\realms-1.10.22.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.1.0\9835253257524c1be7ab50c057aa2d418fb72082\fastutil-7.1.0.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.8.1\e801d13612e22cad62a3f4f3fe7fdbe6334a8e72\log4j-api-2.8.1.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.8.1\4ac28ff2f1ddf05dae3043a190451e8c46b73c31\log4j-core-2.8.1.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.10.3\48fd510879dff266c3815947de66e3d4809f8668\text2speech-1.10.3.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.jline\jline\3.5.1\51800e9d7a13608894a5a28eed0f5c7fa2f300fb\jline-3.5.1.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.2\3354e11e2b34215f06dab629ab88e06aca477c19\asm-debug-all-5.2.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.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
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.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
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.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
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.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
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.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
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.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
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.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
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.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
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\ca.weblite\java-objc-bridge\1.0.0\6ef160c3133a78de015830860197602ca1c855d3\java-objc-bridge-1.0.0.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.codehaus.plexus\plexus-utils\3.1.0\60eecb6f15abdb1c653ad80abaac6fe188b3feaa\plexus-utils-3.1.0.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.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
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.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
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.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
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\.gradle\caches\minecraft\net\minecraftforge\forge\1.12.2-14.23.5.2838\start
[18:20:26] [main/DEBUG] [FML]: Java library path at launch is:
[18:20:26] [main/DEBUG] [FML]:     C:\Program Files\Java\jdk1.8.0_211\bin
[18:20:26] [main/DEBUG] [FML]:     C:\WINDOWS\Sun\Java\bin
[18:20:26] [main/DEBUG] [FML]:     C:\WINDOWS\system32
[18:20:26] [main/DEBUG] [FML]:     C:\WINDOWS
[18:20:26] [main/DEBUG] [FML]:     C:/Program Files/Java/jdk1.8.0_211/bin/../jre/bin/server
[18:20:26] [main/DEBUG] [FML]:     C:/Program Files/Java/jdk1.8.0_211/bin/../jre/bin
[18:20:26] [main/DEBUG] [FML]:     C:/Program Files/Java/jdk1.8.0_211/bin/../jre/lib/amd64
[18:20:26] [main/DEBUG] [FML]:     C:\Program Files\Java\jdk1.8.0_211\bin
[18:20:26] [main/DEBUG] [FML]:     C:\Program Files (x86)\Common Files\Oracle\Java\javapath
[18:20:26] [main/DEBUG] [FML]:     C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\iCLS\
[18:20:26] [main/DEBUG] [FML]:     C:\Program Files\Intel\Intel(R) Management Engine Components\iCLS\
[18:20:26] [main/DEBUG] [FML]:     C:\ProgramData\Oracle\Java\javapath
[18:20:26] [main/DEBUG] [FML]:     C:\WINDOWS\system32
[18:20:26] [main/DEBUG] [FML]:     C:\WINDOWS
[18:20:26] [main/DEBUG] [FML]:     C:\WINDOWS\System32\Wbem
[18:20:26] [main/DEBUG] [FML]:     C:\WINDOWS\System32\WindowsPowerShell\v1.0\
[18:20:26] [main/DEBUG] [FML]:     D:\Program Files\Git\cmd
[18:20:26] [main/DEBUG] [FML]:     C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common
[18:20:26] [main/DEBUG] [FML]:     C:\WINDOWS\system32
[18:20:26] [main/DEBUG] [FML]:     C:\WINDOWS
[18:20:26] [main/DEBUG] [FML]:     C:\WINDOWS\System32\Wbem
[18:20:26] [main/DEBUG] [FML]:     C:\WINDOWS\System32\WindowsPowerShell\v1.0\
[18:20:26] [main/DEBUG] [FML]:     C:\Program Files\nodejs\
[18:20:26] [main/DEBUG] [FML]:     C:\Program Files\PuTTY\
[18:20:26] [main/DEBUG] [FML]:     C:\WINDOWS\System32\OpenSSH\
[18:20:26] [main/DEBUG] [FML]:     C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL
[18:20:26] [main/DEBUG] [FML]:     C:\Program Files\Intel\Intel(R) Management Engine Components\DAL
[18:20:26] [main/DEBUG] [FML]:     C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT
[18:20:26] [main/DEBUG] [FML]:     C:\Program Files\Intel\Intel(R) Management Engine Components\IPT
[18:20:26] [main/DEBUG] [FML]:     C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR
[18:20:26] [main/DEBUG] [FML]:     C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\
[18:20:26] [main/DEBUG] [FML]:     C:\Program Files\Dell\Dell EMC Repository
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\AppData\Local\Programs\Python\Python37\Scripts\
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\AppData\Local\Programs\Python\Python37\
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\AppData\Local\Microsoft\WindowsApps
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\AppData\Local\GitHubDesktop\bin
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\AppData\Local\Microsoft\WindowsApps
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\AppData\Roaming\npm
[18:20:26] [main/DEBUG] [FML]:     C:\Program Files (x86)\FAHClient
[18:20:26] [main/DEBUG] [FML]:     C:\Users\nibbl\Desktop
[18:20:26] [main/DEBUG] [FML]:     
[18:20:26] [main/DEBUG] [FML]:     .
[18:20:26] [main/DEBUG] [FML]:     C:/Users/nibbl/.gradle/caches/minecraft/net/minecraft/natives/1.12.2
[18:20:26] [main/ERROR] [FML]: Apache Maven library folder was not in the format expected. Using default libraries directory.
[18:20:26] [main/ERROR] [FML]: Full: C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar
[18:20:26] [main/ERROR] [FML]: Trimmed: c:/users/nibbl/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.5.3/
[18:20:26] [main/DEBUG] [FML]: Determined Minecraft Libraries Root: .\libraries
[18:20:26] [main/DEBUG] [FML]: Cleaning up mods folder: .\mods
[18:20:26] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[18:20:26] [main/INFO] [FML]: Detected deobfuscated environment, loading log configs for colored console logs.
[18:20:28] [main/DEBUG] [FML]: Instantiating coremod class FMLCorePlugin
[18:20:28] [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
[18:20:28] [main/DEBUG] [FML]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
[18:20:28] [main/DEBUG] [FML]: Enqueued coremod FMLCorePlugin
[18:20:28] [main/DEBUG] [FML]: Instantiating coremod class FMLForgePlugin
[18:20:28] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin
[18:20:28] [main/DEBUG] [FML]: Enqueued coremod FMLForgePlugin
[18:20:28] [main/DEBUG] [FML]: All fundamental core mods are successfully located
[18:20:28] [main/DEBUG] [FML]: Discovering coremods
[18:20:28] [main/INFO] [FML]: Searching D:\ECLIPSE WORKSPACE\Minecraft Modding\MineSuperior\run\.\mods for mods
[18:20:28] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[18:20:28] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[18:20:28] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[18:20:28] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:20:28] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[18:20:28] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[18:20:28] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:20:28] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:20:28] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:20:28] [main/DEBUG] [FML]: Injecting coremod FMLCorePlugin \{net.minecraftforge.fml.relauncher.FMLCorePlugin\} class transformers
[18:20:28] [main/TRACE] [FML]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer
[18:20:28] [main/TRACE] [FML]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer
[18:20:28] [main/TRACE] [FML]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer
[18:20:28] [main/TRACE] [FML]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SoundEngineFixTransformer
[18:20:28] [main/DEBUG] [FML]: Injection complete
[18:20:28] [main/DEBUG] [FML]: Running coremod plugin for FMLCorePlugin \{net.minecraftforge.fml.relauncher.FMLCorePlugin\}
[18:20:28] [main/DEBUG] [FML]: Running coremod plugin FMLCorePlugin
[18:20:28] [main/DEBUG] [FML]: Loading deobfuscation resource C:\Users\nibbl\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20171003\1.12.2\srgs\srg-mcp.srg with 36076 records
[18:20:29] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[18:20:29] [main/DEBUG] [FML]: Coremod plugin class FMLCorePlugin run successfully
[18:20:29] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:20:29] [main/DEBUG] [FML]: Injecting coremod FMLForgePlugin \{net.minecraftforge.classloading.FMLForgePlugin\} class transformers
[18:20:29] [main/DEBUG] [FML]: Injection complete
[18:20:29] [main/DEBUG] [FML]: Running coremod plugin for FMLForgePlugin \{net.minecraftforge.classloading.FMLForgePlugin\}
[18:20:29] [main/DEBUG] [FML]: Running coremod plugin FMLForgePlugin
[18:20:29] [main/DEBUG] [FML]: Coremod plugin class FMLForgePlugin run successfully
[18:20:29] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[18:20:29] [main/DEBUG] [FML]: Loaded 215 rules from AccessTransformer config file forge_at.cfg
[18:20:29] [main/DEBUG] [FML]: Validating minecraft
[18:20:30] [main/DEBUG] [FML]: Minecraft validated, launching...
[18:20:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[18:20:30] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[18:20:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[18:20:30] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[18:20:30] [Client thread/INFO] [net.minecraft.client.Minecraft]: Setting user: Player445
[18:20:34] [Client thread/DEBUG] [FML]: Creating vanilla freeze snapshot
[18:20:34] [Client thread/DEBUG] [FML]: Vanilla freeze snapshot created
[18:20:34] [Client thread/WARN] [net.minecraft.client.settings.GameSettings]: Skipping bad option: lastServer:
[18:20:34] [Client thread/INFO] [net.minecraft.client.Minecraft]: LWJGL Version: 2.9.4
[18:20:35] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - LanguageManager took 0.001s
[18:20:36] [Client thread/INFO] [FML]: -- System Details --
Details:
    Minecraft Version: 1.12.2
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 1.8.0_211, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 64126952 bytes (61 MB) / 457179136 bytes (436 MB) up to 1900019712 bytes (1812 MB)
    JVM Flags: 0 total; 
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    FML: 
    Loaded coremods (and transformers): 
    GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 430.39' Renderer: 'GeForce GTX 1070/PCIe/SSE2'
[18:20:36] [Client thread/INFO] [FML]: MinecraftForge v14.23.5.2838 Initialized
[18:20:36] [Client thread/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
[18:20:36] [Client thread/INFO] [FML]: Invalid recipe found with multiple oredict ingredients in the same ingredient...
[18:20:36] [Client thread/INFO] [FML]: Replaced 1227 ore ingredients
[18:20:36] [Client thread/DEBUG] [FML]: File D:\ECLIPSE WORKSPACE\Minecraft Modding\MineSuperior\run\config\injectedDependencies.json not found. No dependencies injected
[18:20:37] [Client thread/DEBUG] [FML]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]
[18:20:37] [Client thread/DEBUG] [FML]: Attempting to load mods contained in the minecraft jar file and associated classes
[18:20:37] [Client thread/DEBUG] [FML]: Found a minecraft related directory at D:\ECLIPSE WORKSPACE\Minecraft Modding\MineSuperior\bin, examining for mod candidates
[18:20:37] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\nibbl\.gradle\caches\minecraft\net\minecraftforge\forge\1.12.2-14.23.5.2838\snapshot\20171003\forgeSrc-1.12.2-14.23.5.2838.jar, examining for mod candidates
[18:20:37] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\nibbl\.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
[18:20:37] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\1.1\aef610b34a1be37fa851825f12372b78424d8903\patchy-1.1.jar, examining for mod candidates
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\4.4.0\cb208278274bf12ebdb56c61bd7407e6f774d65a\jna-4.4.0.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.3\cdd846cfc4e0f7eefafc02c0f5dce32b9303aa2a\jopt-simple-5.0.3.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.1.9.Final\97860965d6a0a6b98e7f569f3f966727b8db75\netty-all-4.1.9.Final.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\21.0\3a3d111be1be1b745edfa7d91678a12d7ed38709\guava-21.0.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.5\6c6c702c89bfff3cd9e80b04d668c5e190d588c6\commons-lang3-3.5.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.5\2852e6e05fbb95076fc091f6d1780f1f8fe35e0f\commons-io-2.5.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.10\4b95f4897fa13f2cd904aee711aeafc0c5295cd8\commons-codec-1.10.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.8.0\c4ba5371a29ac9b2ad6129b1d39ea38750043eff\gson-2.8.0.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.25\9834cdf236c22e84b946bba989e2f94ef5897c3c\authlib-1.5.25.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.10.22\bd0dccebdf3744c75f1ca20063f16e8f7d5e663f\realms-1.10.22.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.1.0\9835253257524c1be7ab50c057aa2d418fb72082\fastutil-7.1.0.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.8.1\e801d13612e22cad62a3f4f3fe7fdbe6334a8e72\log4j-api-2.8.1.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.8.1\4ac28ff2f1ddf05dae3043a190451e8c46b73c31\log4j-core-2.8.1.jar
[18:20:37] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.10.3\48fd510879dff266c3815947de66e3d4809f8668\text2speech-1.10.3.jar, examining for mod candidates
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.jline\jline\3.5.1\51800e9d7a13608894a5a28eed0f5c7fa2f300fb\jline-3.5.1.jar
[18:20:37] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\nibbl\.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
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.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
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.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
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.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
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.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
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.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
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.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
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.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
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar
[18:20:37] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar, examining for mod candidates
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.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
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar
[18:20:37] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\nibbl\.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
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar
[18:20:37] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\org.codehaus.plexus\plexus-utils\3.1.0\60eecb6f15abdb1c653ad80abaac6fe188b3feaa\plexus-utils-3.1.0.jar, examining for mod candidates
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.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
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.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
[18:20:37] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\nibbl\.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
[18:20:37] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\nibbl\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates
[18:20:37] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\nibbl\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates
[18:20:37] [Client thread/DEBUG] [FML]: Found a minecraft related directory at C:\Users\nibbl\.gradle\caches\minecraft\net\minecraftforge\forge\1.12.2-14.23.5.2838\start, examining for mod candidates
[18:20:37] [Client thread/DEBUG] [FML]: Minecraft jar mods loaded successfully
[18:20:37] [Client thread/INFO] [FML]: Searching D:\ECLIPSE WORKSPACE\Minecraft Modding\MineSuperior\run\.\mods for mods
[18:20:37] [Client thread/DEBUG] [FML]: Examining directory bin for potential mods
[18:20:37] [Client thread/DEBUG] [FML]: No mcmod.info file found in directory bin
[18:20:37] [Client thread/TRACE] [FML]: Recursing into package assests
[18:20:37] [Client thread/TRACE] [FML]: Recursing into package assests/minesuperior
[18:20:37] [Client thread/TRACE] [FML]: Recursing into package assests/minesuperior/lang
[18:20:37] [Client thread/TRACE] [FML]: Recursing into package com
[18:20:37] [Client thread/TRACE] [FML]: Recursing into package com/stamp
[18:20:37] [Client thread/TRACE] [FML]: Recursing into package com/stamp/minesuperior
[18:20:37] [Client thread/DEBUG] [FML]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (com.stamp.minesuperior.Main) - loading
[18:20:37] [Client thread/TRACE] [FML]: Parsed dependency info for minesuperior: Requirements: [] After:[] Before:[]
[18:20:37] [Client thread/TRACE] [FML]: Recursing into package com/stamp/minesuperior/proxy
[18:20:37] [Client thread/TRACE] [FML]: Recursing into package com/stamp/minesuperior/util
[18:20:37] [Client thread/DEBUG] [FML]: Examining file forgeSrc-1.12.2-14.23.5.2838.jar for potential mods
[18:20:37] [Client thread/DEBUG] [FML]: The mod container forgeSrc-1.12.2-14.23.5.2838.jar appears to be missing an mcmod.info file
[18:20:38] [Client thread/DEBUG] [FML]: Examining file jsr305-3.0.1.jar for potential mods
[18:20:38] [Client thread/DEBUG] [FML]: The mod container jsr305-3.0.1.jar appears to be missing an mcmod.info file
[18:20:38] [Client thread/DEBUG] [FML]: Examining file patchy-1.1.jar for potential mods
[18:20:38] [Client thread/DEBUG] [FML]: The mod container patchy-1.1.jar appears to be missing an mcmod.info file
[18:20:38] [Client thread/DEBUG] [FML]: Examining file text2speech-1.10.3.jar for potential mods
[18:20:38] [Client thread/DEBUG] [FML]: The mod container text2speech-1.10.3.jar appears to be missing an mcmod.info file
[18:20:38] [Client thread/DEBUG] [FML]: Examining file asm-debug-all-5.2.jar for potential mods
[18:20:38] [Client thread/DEBUG] [FML]: The mod container asm-debug-all-5.2.jar appears to be missing an mcmod.info file
[18:20:38] [Client thread/DEBUG] [FML]: Examining file maven-artifact-3.5.3.jar for potential mods
[18:20:38] [Client thread/DEBUG] [FML]: The mod container maven-artifact-3.5.3.jar appears to be missing an mcmod.info file
[18:20:38] [Client thread/DEBUG] [FML]: Examining file java-objc-bridge-1.0.0.jar for potential mods
[18:20:38] [Client thread/DEBUG] [FML]: The mod container java-objc-bridge-1.0.0.jar appears to be missing an mcmod.info file
[18:20:38] [Client thread/DEBUG] [FML]: Examining file plexus-utils-3.1.0.jar for potential mods
[18:20:38] [Client thread/DEBUG] [FML]: The mod container plexus-utils-3.1.0.jar appears to be missing an mcmod.info file
[18:20:38] [Client thread/DEBUG] [FML]: Examining file compileDummy.jar for potential mods
[18:20:38] [Client thread/DEBUG] [FML]: The mod container compileDummy.jar appears to be missing an mcmod.info file
[18:20:38] [Client thread/DEBUG] [FML]: Examining file providedDummy.jar for potential mods
[18:20:38] [Client thread/DEBUG] [FML]: The mod container providedDummy.jar appears to be missing an mcmod.info file
[18:20:38] [Client thread/DEBUG] [FML]: Examining directory start for potential mods
[18:20:38] [Client thread/DEBUG] [FML]: No mcmod.info file found in directory start
[18:20:38] [Client thread/TRACE] [FML]: Recursing into package net
[18:20:38] [Client thread/TRACE] [FML]: Recursing into package net/minecraftforge
[18:20:38] [Client thread/TRACE] [FML]: Recursing into package net/minecraftforge/gradle
[18:20:38] [Client thread/TRACE] [FML]: Recursing into package net/minecraftforge/gradle/tweakers
[18:20:38] [Client thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
[18:20:38] [Client thread/TRACE] [FML]: Received a system property request ''
[18:20:38] [Client thread/TRACE] [FML]: System property request managing the state of 0 mods
[18:20:38] [Client thread/DEBUG] [FML]: After merging, found state information for 0 mods
[18:20:38] [Client thread/DEBUG] [FML]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[18:20:38] [Client thread/DEBUG] [FML]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[18:20:38] [Client thread/DEBUG] [FML]: Enabling mod minesuperior
[18:20:38] [Client thread/DEBUG] [FML]: Mod MineSuperior is missing a pack.mcmeta file, substituting a dummy one
[18:20:38] [Client thread/TRACE] [FML]: Verifying mod requirements are satisfied
[18:20:38] [Client thread/TRACE] [FML]: All mod requirements are satisfied
[18:20:38] [Client thread/TRACE] [FML]: Sorting mods into an ordered list
[18:20:38] [Client thread/TRACE] [FML]: Mod sorting completed successfully
[18:20:38] [Client thread/DEBUG] [FML]: Mod sorting data
[18:20:38] [Client thread/DEBUG] [FML]:     minesuperior(MineSuperior:1.5): bin ()
[18:20:38] [Client thread/DEBUG] [FML]: Loading @Config anotation data
[18:20:38] [Client thread/TRACE] [FML]: Sending event FMLConstructionEvent to mod minecraft
[18:20:38] [Client thread/TRACE] [FML]: Sent event FMLConstructionEvent to mod minecraft
[18:20:38] [Client thread/DEBUG] [FML]: Bar Step: Construction - Minecraft took 0.007s
[18:20:38] [Client thread/TRACE] [FML]: Sending event FMLConstructionEvent to mod mcp
[18:20:38] [Client thread/TRACE] [FML]: Sent event FMLConstructionEvent to mod mcp
[18:20:38] [Client thread/DEBUG] [FML]: Bar Step: Construction - Minecraft Coder Pack took 0.000s
[18:20:38] [Client thread/TRACE] [FML]: Sending event FMLConstructionEvent to mod FML
[18:20:38] [Client thread/TRACE] [FML]: Mod FML is using network checker : Invoking method checkModLists
[18:20:38] [Client thread/TRACE] [FML]: Testing mod FML to verify it accepts its own version in a remote connection
[18:20:38] [Client thread/TRACE] [FML]: The mod FML accepts its own version (8.0.99.99)
[18:20:38] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, minesuperior] at CLIENT
[18:20:38] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, minesuperior] at SERVER
[18:20:38] [Client thread/TRACE] [FML]: Sent event FMLConstructionEvent to mod FML
[18:20:38] [Client thread/DEBUG] [FML]: Bar Step: Construction - Forge Mod Loader took 0.445s
[18:20:38] [Client thread/TRACE] [FML]: Sending event FMLConstructionEvent to mod forge
[18:20:38] [Client thread/DEBUG] [forge]: Loading Vanilla annotations: null
[18:20:38] [Client thread/DEBUG] [forge]: Preloading CrashReport Classes
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/Minecraft$10
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/Minecraft$11
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/Minecraft$12
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/Minecraft$13
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/Minecraft$14
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/Minecraft$2
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/Minecraft$3
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/Minecraft$4
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/Minecraft$5
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/Minecraft$6
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/Minecraft$7
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/Minecraft$8
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/Minecraft$9
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/multiplayer/WorldClient$1
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/multiplayer/WorldClient$2
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/multiplayer/WorldClient$3
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/multiplayer/WorldClient$4
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/particle/ParticleManager$1
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/particle/ParticleManager$2
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/particle/ParticleManager$3
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/particle/ParticleManager$4
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/renderer/EntityRenderer$2
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/renderer/EntityRenderer$3
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/renderer/EntityRenderer$4
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/renderer/RenderGlobal$1
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/renderer/RenderItem$1
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/renderer/RenderItem$2
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/renderer/RenderItem$3
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/renderer/RenderItem$4
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/renderer/texture/TextureAtlasSprite$1
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/renderer/texture/TextureManager$1
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/renderer/texture/TextureMap$1
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/renderer/texture/TextureMap$2
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/client/renderer/texture/TextureMap$3
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/crash/CrashReport$1
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/crash/CrashReport$2
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/crash/CrashReport$3
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/crash/CrashReport$4
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/crash/CrashReport$5
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/crash/CrashReport$6
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/crash/CrashReport$7
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/crash/CrashReportCategory$1
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/crash/CrashReportCategory$2
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/crash/CrashReportCategory$3
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/crash/CrashReportCategory$4
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/crash/CrashReportCategory$5
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/entity/Entity$2
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/entity/Entity$3
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/entity/Entity$4
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/entity/Entity$5
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/entity/EntityTracker$1
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/entity/player/InventoryPlayer$1
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/nbt/NBTTagCompound$1
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/nbt/NBTTagCompound$2
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/network/NetHandlerPlayServer$3
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/network/NetworkSystem$6
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/server/MinecraftServer$2
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/server/MinecraftServer$3
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/server/dedicated/DedicatedServer$3
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/server/dedicated/DedicatedServer$4
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/server/integrated/IntegratedServer$1
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/server/integrated/IntegratedServer$2
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/tileentity/CommandBlockBaseLogic$1
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/tileentity/CommandBlockBaseLogic$2
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/tileentity/TileEntity$1
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/tileentity/TileEntity$2
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/tileentity/TileEntity$3
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/world/World$1
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/world/World$2
[18:20:38] [Client thread/DEBUG] [forge]:     net/minecraft/world/World$3
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraft/world/World$4
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraft/world/World$5
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraft/world/chunk/Chunk$1
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraft/world/gen/structure/MapGenStructure$1
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraft/world/gen/structure/MapGenStructure$2
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraft/world/gen/structure/MapGenStructure$3
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraft/world/storage/WorldInfo$10
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraft/world/storage/WorldInfo$2
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraft/world/storage/WorldInfo$3
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraft/world/storage/WorldInfo$4
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraft/world/storage/WorldInfo$5
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraft/world/storage/WorldInfo$6
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraft/world/storage/WorldInfo$7
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraft/world/storage/WorldInfo$8
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraft/world/storage/WorldInfo$9
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraftforge/common/util/TextTable
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraftforge/common/util/TextTable$Alignment
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraftforge/common/util/TextTable$Column
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraftforge/common/util/TextTable$Row
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraftforge/fml/client/SplashProgress$1
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraftforge/fml/common/FMLCommonHandler$1
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraftforge/fml/common/ICrashCallable
[18:20:39] [Client thread/DEBUG] [forge]:     net/minecraftforge/fml/common/Loader$1
[18:20:39] [Client thread/TRACE] [FML]: Mod forge is using network checker : No network checking performed
[18:20:39] [Client thread/TRACE] [FML]: Testing mod forge to verify it accepts its own version in a remote connection
[18:20:39] [Client thread/TRACE] [FML]: The mod forge accepts its own version (14.23.5.2838)
[18:20:39] [Client thread/DEBUG] [FML]: Attempting to inject @Config classes into forge for type INSTANCE
[18:20:39] [Client thread/TRACE] [FML]: Sent event FMLConstructionEvent to mod forge
[18:20:39] [Client thread/DEBUG] [FML]: Bar Step: Construction - Minecraft Forge took 0.163s
[18:20:39] [Client thread/TRACE] [FML]: Sending event FMLConstructionEvent to mod minesuperior
[18:20:39] [Client thread/TRACE] [FML]: Mod minesuperior is using network checker : Accepting version 1.5
[18:20:39] [Client thread/TRACE] [FML]: Testing mod minesuperior to verify it accepts its own version in a remote connection
[18:20:39] [Client thread/TRACE] [FML]: The mod minesuperior accepts its own version (1.5)
[18:20:39] [Client thread/DEBUG] [FML]: Attempting to inject @SidedProxy classes into minesuperior
[18:20:39] [Client thread/DEBUG] [FML]: Attempting to inject @EventBusSubscriber classes into the eventbus for minesuperior
[18:20:39] [Client thread/DEBUG] [FML]: Attempting to inject @Config classes into minesuperior for type INSTANCE
[18:20:39] [Client thread/TRACE] [FML]: Sent event FMLConstructionEvent to mod minesuperior
[18:20:39] [Client thread/DEBUG] [FML]: Bar Step: Construction - MineSuperior took 0.031s
[18:20:39] [Client thread/DEBUG] [FML]: Bar Finished: Construction took 0.646s
[18:20:39] [Client thread/DEBUG] [FML]: Mod signature data
[18:20:39] [Client thread/DEBUG] [FML]:      Valid Signatures:
[18:20:39] [Client thread/DEBUG] [FML]:      Missing Signatures:
[18:20:39] [Client thread/DEBUG] [FML]:         minecraft    (Minecraft    1.12.2)    minecraft.jar
[18:20:39] [Client thread/DEBUG] [FML]:         mcp    (Minecraft Coder Pack    9.42)    minecraft.jar
[18:20:39] [Client thread/DEBUG] [FML]:         FML    (Forge Mod Loader    8.0.99.99)    forgeSrc-1.12.2-14.23.5.2838.jar
[18:20:39] [Client thread/DEBUG] [FML]:         forge    (Minecraft Forge    14.23.5.2838)    forgeSrc-1.12.2-14.23.5.2838.jar
[18:20:39] [Client thread/DEBUG] [FML]:         minesuperior    (MineSuperior    1.5)    bin
[18:20:39] [Client thread/INFO] [net.minecraft.client.resources.SimpleReloadableResourceManager]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:MineSuperior
[18:20:39] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - Default took 0.010s
[18:20:39] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.012s
[18:20:39] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.015s
[18:20:39] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - FMLFileResourcePack:MineSuperior took 0.001s
[18:20:39] [Client thread/DEBUG] [FML]: Bar Finished: Reloading - LanguageManager took 0.186s
[18:20:39] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - Reloading listeners took 0.187s
[18:20:39] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resources took 0.224s
[18:20:39] [Client thread/DEBUG] [FML]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[18:20:39] [Client thread/DEBUG] [FML]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[18:20:39] [Client thread/DEBUG] [FML]: Mod MineSuperior is missing a pack.mcmeta file, substituting a dummy one
[18:20:39] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[18:20:39] [Client thread/INFO] [FML]: Found 1168 ObjectHolder annotations
[18:20:39] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
[18:20:39] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[18:20:39] [Client thread/TRACE] [FML]: Sending event FMLPreInitializationEvent to mod minecraft
[18:20:39] [Client thread/TRACE] [FML]: Sent event FMLPreInitializationEvent to mod minecraft
[18:20:39] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Minecraft took 0.000s
[18:20:39] [Client thread/TRACE] [FML]: Sending event FMLPreInitializationEvent to mod mcp
[18:20:39] [Client thread/TRACE] [FML]: Sent event FMLPreInitializationEvent to mod mcp
[18:20:39] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.003s
[18:20:39] [Client thread/TRACE] [FML]: Sending event FMLPreInitializationEvent to mod FML
[18:20:39] [Client thread/TRACE] [FML]: Sent event FMLPreInitializationEvent to mod FML
[18:20:39] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Forge Mod Loader took 0.000s
[18:20:39] [Client thread/TRACE] [FML]: Sending event FMLPreInitializationEvent to mod forge
[18:20:39] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[18:20:39] [Client thread/TRACE] [FML]: Sent event FMLPreInitializationEvent to mod forge
[18:20:39] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Minecraft Forge took 0.100s
[18:20:39] [Client thread/TRACE] [FML]: Sending event FMLPreInitializationEvent to mod minesuperior
[18:20:39] [Client thread/TRACE] [FML]: Sent event FMLPreInitializationEvent to mod minesuperior
[18:20:39] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - MineSuperior took 0.025s
[18:20:39] [Client thread/DEBUG] [FML]: Bar Finished: PreInitialization took 0.129s
[18:20:39] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[18:20:39] [Client thread/INFO] [FML]: Applying holder lookups
[18:20:39] [Client thread/INFO] [FML]: Holder lookups applied
[18:20:39] [Client thread/INFO] [FML]: Applying holder lookups
[18:20:39] [Client thread/INFO] [FML]: Holder lookups applied
[18:20:39] [Client thread/INFO] [FML]: Applying holder lookups
[18:20:39] [Client thread/INFO] [FML]: Holder lookups applied
[18:20:39] [Client thread/INFO] [FML]: Applying holder lookups
[18:20:39] [Client thread/INFO] [FML]: Holder lookups applied
[18:20:39] [Client thread/INFO] [FML]: Injecting itemstacks
[18:20:39] [Client thread/INFO] [FML]: Itemstack injection complete
[18:20:39] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - TextureManager took 0.000s
[18:20:39] [Forge Version Check/DEBUG] [forge.VersionCheck]: [forge] Received version check data:
{
  "homepage": "http://files.minecraftforge.net/maven/net/minecraftforge/forge/",
  "promos": {
    "1.1-latest": "1.3.2.6",
    "1.10-latest": "12.18.0.2000",
    "1.10.2-latest": "12.18.3.2511",
    "1.10.2-recommended": "12.18.3.2185",
    "1.11-latest": "13.19.1.2199",
    "1.11-recommended": "13.19.1.2189",
    "1.11.2-latest": "13.20.1.2588",
    "1.11.2-recommended": "13.20.1.2386",
    "1.12-latest": "14.21.1.2443",
    "1.12-recommended": "14.21.1.2387",
    "1.12.1-latest": "14.22.1.2485",
    "1.12.1-recommended": "14.22.1.2478",
    "1.12.2-latest": "14.23.5.2838",
    "1.12.2-recommended": "14.23.5.2768",
    "1.13.2-latest": "25.0.219",
    "1.14.2-latest": "26.0.63",
    "1.14.3-latest": "27.0.25",
    "1.5.2-latest": "7.8.1.738",
    "1.5.2-recommended": "7.8.1.737",
    "1.6.1-latest": "8.9.0.775",
    "1.6.2-latest": "9.10.1.871",
    "1.6.2-recommended": "9.10.1.871",
    "1.6.3-latest": "9.11.0.878",
    "1.6.4-latest": "9.11.1.1345",
    "1.6.4-recommended": "9.11.1.1345",
    "1.7.10-latest": "10.13.4.1614",
    "1.7.10-latest-1.7.10": "10.13.2.1343",
    "1.7.10-recommended": "10.13.4.1558",
    "1.7.2-latest": "10.12.2.1147",
    "1.7.2-recommended": "10.12.2.1121",
    "1.8-latest": "11.14.4.1577",
    "1.8-recommended": "11.14.4.1563",
    "1.8.8-latest": "11.15.0.1655",
    "1.8.9-latest": "11.15.1.2318",
    "1.8.9-recommended": "11.15.1.1722",
    "1.9-latest": "12.16.0.1942",
    "1.9-recommended": "12.16.1.1887",
    "1.9.4-latest": "12.17.0.2051",
    "1.9.4-recommended": "12.17.0.1976",
    "latest-1.7.10": "10.13.2.1343",
    "recommended": "14.23.5.2768"
  }
}
[18:20:39] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: AHEAD Target: null
[18:20:41] [Thread-3/INFO] [FML]: Using alternative sync timing : 200 frames of Display.update took 1992843140 nanos
[18:21:21] [Client thread/DEBUG] [FML]: Bar Finished: Loading sounds took 42.098s
[18:21:21] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - SoundHandler took 42.131s
[18:21:21] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager]: Starting up SoundSystem...
[18:21:21] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - FontRenderer took 0.006s
[18:21:21] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - FontRenderer took 0.003s
[18:21:21] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.013s
[18:21:21] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.011s
[18:21:21] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - GL Setup took 0.001s
[18:21:21] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - Loading Texture Map took 0.008s
[18:21:21] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - B3DLoader took 0.002s
[18:21:21] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - OBJLoader took 0.001s
[18:21:21] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - ModelFluid$FluidLoader took 0.000s
[18:21:21] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - ItemLayerModel$Loader took 0.000s
[18:21:21] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - MultiLayerModel$Loader took 0.000s
[18:21:21] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - ModelDynBucket$LoaderDynBucket took 0.000s
[18:21:22] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager]: Initializing LWJGL OpenAL
[18:21:22] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[18:21:23] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager]: OpenAL initialized.
[18:21:23] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager]: Sound engine started
[18:21:28] [Client thread/DEBUG] [FML]: Bar Finished: ModelLoader: blocks took 7.080s
[18:21:32] [Client thread/DEBUG] [FML]: Bar Finished: ModelLoader: items took 3.045s
[18:21:32] [Client thread/INFO] [FML]: Max texture size: 16384
[18:21:32] [Client thread/DEBUG] [FML]: Bar Finished: Texture stitching took 0.418s
[18:21:32] [Client thread/DEBUG] [FML]: Bar Finished: Texture stitching took 0.023s
[18:21:32] [Client thread/INFO] [net.minecraft.client.renderer.texture.TextureMap]: Created: 512x512 textures-atlas
[18:21:32] [Client thread/DEBUG] [FML]: Bar Finished: Texture creation took 0.027s
[18:21:32] [Client thread/DEBUG] [FML]: Bar Finished: Texture mipmap and upload took 0.051s
[18:21:33] [Client thread/DEBUG] [FML]: Bar Finished: ModelLoader: baking took 0.571s
[18:21:33] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - ModelManager took 11.359s
[18:21:33] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - Loading Model Manager took 11.449s
[18:21:33] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - RenderItem took 0.016s
[18:21:33] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - Loading Item Renderer took 0.296s
[18:21:33] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - EntityRenderer took 0.000s
[18:21:33] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s
[18:21:33] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - RenderGlobal took 0.000s
[18:21:33] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - SearchTreeManager took 0.120s
[18:21:33] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.439s
[18:21:33] [Client thread/DEBUG] [FML]: Bar Finished: Rendering Setup took 12.194s
[18:21:34] [Client thread/INFO] [FML]: Applying holder lookups
[18:21:34] [Client thread/INFO] [FML]: Holder lookups applied
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLInitializationEvent to mod minecraft
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLInitializationEvent to mod minecraft
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Minecraft took 0.000s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLInitializationEvent to mod mcp
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLInitializationEvent to mod mcp
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Minecraft Coder Pack took 0.001s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLInitializationEvent to mod FML
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLInitializationEvent to mod FML
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Forge Mod Loader took 0.000s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLInitializationEvent to mod forge
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLInitializationEvent to mod forge
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Minecraft Forge took 0.000s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLInitializationEvent to mod minesuperior
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLInitializationEvent to mod minesuperior
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: Initialization - MineSuperior took 0.022s
[18:21:34] [Client thread/DEBUG] [FML]: Bar Finished: Initialization took 0.023s
[18:21:34] [Client thread/TRACE] [FML]: Attempting to deliver 0 IMC messages to mod minecraft
[18:21:34] [Client thread/TRACE] [FML]: Sending event IMCEvent to mod minecraft
[18:21:34] [Client thread/TRACE] [FML]: Sent event IMCEvent to mod minecraft
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Minecraft took 0.006s
[18:21:34] [Client thread/TRACE] [FML]: Attempting to deliver 0 IMC messages to mod mcp
[18:21:34] [Client thread/TRACE] [FML]: Sending event IMCEvent to mod mcp
[18:21:34] [Client thread/TRACE] [FML]: Sent event IMCEvent to mod mcp
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.000s
[18:21:34] [Client thread/TRACE] [FML]: Attempting to deliver 0 IMC messages to mod FML
[18:21:34] [Client thread/TRACE] [FML]: Sending event IMCEvent to mod FML
[18:21:34] [Client thread/TRACE] [FML]: Sent event IMCEvent to mod FML
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.001s
[18:21:34] [Client thread/TRACE] [FML]: Attempting to deliver 0 IMC messages to mod forge
[18:21:34] [Client thread/TRACE] [FML]: Sending event IMCEvent to mod forge
[18:21:34] [Client thread/TRACE] [FML]: Sent event IMCEvent to mod forge
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.000s
[18:21:34] [Client thread/TRACE] [FML]: Attempting to deliver 0 IMC messages to mod minesuperior
[18:21:34] [Client thread/TRACE] [FML]: Sending event IMCEvent to mod minesuperior
[18:21:34] [Client thread/TRACE] [FML]: Sent event IMCEvent to mod minesuperior
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - MineSuperior took 0.000s
[18:21:34] [Client thread/DEBUG] [FML]: Bar Finished: InterModComms$IMC took 0.007s
[18:21:34] [Client thread/INFO] [FML]: Injecting itemstacks
[18:21:34] [Client thread/INFO] [FML]: Itemstack injection complete
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLPostInitializationEvent to mod minecraft
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLPostInitializationEvent to mod minecraft
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Minecraft took 0.000s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLPostInitializationEvent to mod mcp
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLPostInitializationEvent to mod mcp
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.000s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLPostInitializationEvent to mod FML
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLPostInitializationEvent to mod FML
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Forge Mod Loader took 0.000s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLPostInitializationEvent to mod forge
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLPostInitializationEvent to mod forge
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Minecraft Forge took 0.016s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLPostInitializationEvent to mod minesuperior
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLPostInitializationEvent to mod minesuperior
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - MineSuperior took 0.001s
[18:21:34] [Client thread/DEBUG] [FML]: Bar Finished: PostInitialization took 0.018s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLLoadCompleteEvent to mod minecraft
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLLoadCompleteEvent to mod minecraft
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Minecraft took 0.000s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLLoadCompleteEvent to mod mcp
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLLoadCompleteEvent to mod mcp
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.000s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLLoadCompleteEvent to mod FML
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLLoadCompleteEvent to mod FML
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Forge Mod Loader took 0.000s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLLoadCompleteEvent to mod forge
[18:21:34] [Client thread/DEBUG] [FML]: Forge RecipeSorter Baking:
[18:21:34] [Client thread/DEBUG] [FML]:   16: RecipeEntry("Before", UNKNOWN, )
[18:21:34] [Client thread/DEBUG] [FML]:   15: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless
[18:21:34] [Client thread/DEBUG] [FML]:   14: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped
[18:21:34] [Client thread/DEBUG] [FML]:   13: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped
[18:21:34] [Client thread/DEBUG] [FML]:   12: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped
[18:21:34] [Client thread/DEBUG] [FML]:   11: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless
[18:21:34] [Client thread/DEBUG] [FML]:   10: RecipeEntry("minecraft:shield_deco", SHAPELESS, net.minecraft.item.crafting.ShieldRecipes$Decoration) After: minecraft:shapeless
[18:21:34] [Client thread/DEBUG] [FML]:   9: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless
[18:21:34] [Client thread/DEBUG] [FML]:   8: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless
[18:21:34] [Client thread/DEBUG] [FML]:   7: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless
[18:21:34] [Client thread/DEBUG] [FML]:   6: RecipeEntry("minecraft:tippedarrow", SHAPELESS, net.minecraft.item.crafting.RecipeTippedArrow) After: minecraft:shapeless
[18:21:34] [Client thread/DEBUG] [FML]:   5: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless
[18:21:34] [Client thread/DEBUG] [FML]:   4: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless
[18:21:34] [Client thread/DEBUG] [FML]:   3: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless
[18:21:34] [Client thread/DEBUG] [FML]:   2: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless
[18:21:34] [Client thread/DEBUG] [FML]:   1: RecipeEntry("After", UNKNOWN, )
[18:21:34] [Client thread/DEBUG] [FML]: Sorting recipes
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLLoadCompleteEvent to mod forge
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Minecraft Forge took 0.008s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLLoadCompleteEvent to mod minesuperior
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLLoadCompleteEvent to mod minesuperior
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - MineSuperior took 0.001s
[18:21:34] [Client thread/DEBUG] [FML]: Bar Finished: LoadComplete took 0.010s
[18:21:34] [Client thread/DEBUG] [FML]: Freezing registries
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod minecraft
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod minecraft
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft took 0.000s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod mcp
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod mcp
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.000s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod FML
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod FML
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod forge
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod forge
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft Forge took 0.155s
[18:21:34] [Client thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod minesuperior
[18:21:34] [Client thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod minesuperior
[18:21:34] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - MineSuperior took 0.001s
[18:21:34] [Client thread/DEBUG] [FML]: Bar Finished: ModIdMapping took 0.156s
[18:21:34] [Client thread/DEBUG] [FML]: All registries frozen
[18:21:34] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods
[18:21:34] [Client thread/WARN] [net.minecraft.client.settings.GameSettings]: Skipping bad option: lastServer:
[18:21:34] [Client thread/DEBUG] [FML]: Bar Finished: Loading took 57.446s
[18:21:34] [Client thread/INFO] [com.mojang.text2speech.NarratorWindows]: Narrator library for x64 successfully loaded
[18:21:34] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - CloudRenderer took 0.004s
[18:21:35] [Realms Notification Availability checker #1/INFO] [com.mojang.realmsclient.client.RealmsClient]: Could not authorize you against Realms server: Invalid session id
[18:21:53] [Client thread/INFO] [net.minecraft.client.Minecraft]: Stopping!
[18:21:53] [Client thread/INFO] [net.minecraft.client.audio.SoundManager]: SoundSystem shutting down...
[18:21:53] [Client thread/WARN] [net.minecraft.client.audio.SoundManager]: Author: Paul Lamb, www.paulscode.com

 

 

Thanks in advance!

Edited by _Stamp_
Added GitHub Repository
Link to comment
Share on other sites

Could you please post your code as a GitHub repository?

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

 

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

 

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

Spoiler

Logs (Most issues require logs to diagnose):

Spoiler

Please post logs using one of the following sites (Thank you Lumber Wizard for the list):

https://gist.github.com/100MB Requires member (Free)

https://pastebin.com/: 512KB as guest, 10MB as Pro ($$$)

https://hastebin.com/: 400KB

Do NOT use sites like Mediafire, Dropbox, OneDrive, Google Drive, or a site that has a countdown before offering downloads.

 

What to provide:

...for Crashes and Runtime issues:

Minecraft 1.14.4 and newer:

Post debug.log

Older versions:

Please update...

 

...for Installer Issues:

Post your installer log, found in the same place you ran the installer

This log will be called either installer.log or named the same as the installer but with .log on the end

Note for Windows users:

Windows hides file extensions by default so the installer may appear without the .jar extension then when the .log is added the log will appear with the .jar extension

 

Where to get it:

Mojang Launcher: When using the Mojang launcher debug.log is found in .minecraft\logs.

 

Curse/Overwolf: If you are using the Curse Launcher, their configurations break Forge's log settings, fortunately there is an easier workaround than I originally thought, this works even with Curse's installation of the Minecraft launcher as long as it is not launched THROUGH Twitch:

Spoiler
  1. Make sure you have the correct version of Forge installed (some packs are heavily dependent on one specific build of Forge)
  2. Make a launcher profile targeting this version of Forge.
  3. Set the launcher profile's GameDir property to the pack's instance folder (not the instances folder, the folder that has the pack's name on it).
  4. Now launch the pack through that profile and follow the "Mojang Launcher" instructions above.

Video:

Spoiler

 

 

 

or alternately, 

 

Fallback ("No logs are generated"):

If you don't see logs generated in the usual place, provide the launcher_log.txt from .minecraft

 

Server Not Starting:

Spoiler

If your server does not start or a command window appears and immediately goes away, run the jar manually and provide the output.

 

Reporting Illegal/Inappropriate Adfocus Ads:

Spoiler

Get a screenshot of the URL bar or copy/paste the whole URL into a thread on the General Discussion board with a description of the Ad.

Lex will need the Ad ID contained in that URL to report it to Adfocus' support team.

 

Posting your mod as a GitHub Repo:

Spoiler

When you have an issue with your mod the most helpful thing you can do when asking for help is to provide your code to those helping you. The most convenient way to do this is via GitHub or another source control hub.

When setting up a GitHub Repo it might seem easy to just upload everything, however this method has the potential for mistakes that could lead to trouble later on, it is recommended to use a Git client or to get comfortable with the Git command line. The following instructions will use the Git Command Line and as such they assume you already have it installed and that you have created a repository.

 

  1. Open a command prompt (CMD, Powershell, Terminal, etc).
  2. Navigate to the folder you extracted Forge’s MDK to (the one that had all the licenses in).
  3. Run the following commands:
    1. git init
    2. git remote add origin [Your Repository's URL]
      • In the case of GitHub it should look like: https://GitHub.com/[Your Username]/[Repo Name].git
    3. git fetch
    4. git checkout --track origin/master
    5. git stage *
    6. git commit -m "[Your commit message]"
    7. git push
  4. Navigate to GitHub and you should now see most of the files.
    • note that it is intentional that some are not synced with GitHub and this is done with the (hidden) .gitignore file that Forge’s MDK has provided (hence the strictness on which folder git init is run from)
  5. Now you can share your GitHub link with those who you are asking for help.

[Workaround line, please ignore]

 

Link to comment
Share on other sites

This is not directly related to your issue, of course, but your repo is set up incorrectly.

Your repo's root should be in the same directory as the build.gradle and the .gitignore that the MDK provides.

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

 

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

 

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

Spoiler

Logs (Most issues require logs to diagnose):

Spoiler

Please post logs using one of the following sites (Thank you Lumber Wizard for the list):

https://gist.github.com/100MB Requires member (Free)

https://pastebin.com/: 512KB as guest, 10MB as Pro ($$$)

https://hastebin.com/: 400KB

Do NOT use sites like Mediafire, Dropbox, OneDrive, Google Drive, or a site that has a countdown before offering downloads.

 

What to provide:

...for Crashes and Runtime issues:

Minecraft 1.14.4 and newer:

Post debug.log

Older versions:

Please update...

 

...for Installer Issues:

Post your installer log, found in the same place you ran the installer

This log will be called either installer.log or named the same as the installer but with .log on the end

Note for Windows users:

Windows hides file extensions by default so the installer may appear without the .jar extension then when the .log is added the log will appear with the .jar extension

 

Where to get it:

Mojang Launcher: When using the Mojang launcher debug.log is found in .minecraft\logs.

 

Curse/Overwolf: If you are using the Curse Launcher, their configurations break Forge's log settings, fortunately there is an easier workaround than I originally thought, this works even with Curse's installation of the Minecraft launcher as long as it is not launched THROUGH Twitch:

Spoiler
  1. Make sure you have the correct version of Forge installed (some packs are heavily dependent on one specific build of Forge)
  2. Make a launcher profile targeting this version of Forge.
  3. Set the launcher profile's GameDir property to the pack's instance folder (not the instances folder, the folder that has the pack's name on it).
  4. Now launch the pack through that profile and follow the "Mojang Launcher" instructions above.

Video:

Spoiler

 

 

 

or alternately, 

 

Fallback ("No logs are generated"):

If you don't see logs generated in the usual place, provide the launcher_log.txt from .minecraft

 

Server Not Starting:

Spoiler

If your server does not start or a command window appears and immediately goes away, run the jar manually and provide the output.

 

Reporting Illegal/Inappropriate Adfocus Ads:

Spoiler

Get a screenshot of the URL bar or copy/paste the whole URL into a thread on the General Discussion board with a description of the Ad.

Lex will need the Ad ID contained in that URL to report it to Adfocus' support team.

 

Posting your mod as a GitHub Repo:

Spoiler

When you have an issue with your mod the most helpful thing you can do when asking for help is to provide your code to those helping you. The most convenient way to do this is via GitHub or another source control hub.

When setting up a GitHub Repo it might seem easy to just upload everything, however this method has the potential for mistakes that could lead to trouble later on, it is recommended to use a Git client or to get comfortable with the Git command line. The following instructions will use the Git Command Line and as such they assume you already have it installed and that you have created a repository.

 

  1. Open a command prompt (CMD, Powershell, Terminal, etc).
  2. Navigate to the folder you extracted Forge’s MDK to (the one that had all the licenses in).
  3. Run the following commands:
    1. git init
    2. git remote add origin [Your Repository's URL]
      • In the case of GitHub it should look like: https://GitHub.com/[Your Username]/[Repo Name].git
    3. git fetch
    4. git checkout --track origin/master
    5. git stage *
    6. git commit -m "[Your commit message]"
    7. git push
  4. Navigate to GitHub and you should now see most of the files.
    • note that it is intentional that some are not synced with GitHub and this is done with the (hidden) .gitignore file that Forge’s MDK has provided (hence the strictness on which folder git init is run from)
  5. Now you can share your GitHub link with those who you are asking for help.

[Workaround line, please ignore]

 

Link to comment
Share on other sites

3 minutes ago, DaemonUmbra said:

This is not directly related to your issue, of course, but your repo is set up incorrectly.

Your repo's root should be in the same directory as the build.gradle and the .gitignore that the MDK provides.

I have defaulted the .gitignore so those items are uploaded.

Link to comment
Share on other sites

On my end it finds the pack.mcmeta just fine.

What IDE are you using?

Have you tried running the clean task and then the build task again?

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

 

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

 

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

Spoiler

Logs (Most issues require logs to diagnose):

Spoiler

Please post logs using one of the following sites (Thank you Lumber Wizard for the list):

https://gist.github.com/100MB Requires member (Free)

https://pastebin.com/: 512KB as guest, 10MB as Pro ($$$)

https://hastebin.com/: 400KB

Do NOT use sites like Mediafire, Dropbox, OneDrive, Google Drive, or a site that has a countdown before offering downloads.

 

What to provide:

...for Crashes and Runtime issues:

Minecraft 1.14.4 and newer:

Post debug.log

Older versions:

Please update...

 

...for Installer Issues:

Post your installer log, found in the same place you ran the installer

This log will be called either installer.log or named the same as the installer but with .log on the end

Note for Windows users:

Windows hides file extensions by default so the installer may appear without the .jar extension then when the .log is added the log will appear with the .jar extension

 

Where to get it:

Mojang Launcher: When using the Mojang launcher debug.log is found in .minecraft\logs.

 

Curse/Overwolf: If you are using the Curse Launcher, their configurations break Forge's log settings, fortunately there is an easier workaround than I originally thought, this works even with Curse's installation of the Minecraft launcher as long as it is not launched THROUGH Twitch:

Spoiler
  1. Make sure you have the correct version of Forge installed (some packs are heavily dependent on one specific build of Forge)
  2. Make a launcher profile targeting this version of Forge.
  3. Set the launcher profile's GameDir property to the pack's instance folder (not the instances folder, the folder that has the pack's name on it).
  4. Now launch the pack through that profile and follow the "Mojang Launcher" instructions above.

Video:

Spoiler

 

 

 

or alternately, 

 

Fallback ("No logs are generated"):

If you don't see logs generated in the usual place, provide the launcher_log.txt from .minecraft

 

Server Not Starting:

Spoiler

If your server does not start or a command window appears and immediately goes away, run the jar manually and provide the output.

 

Reporting Illegal/Inappropriate Adfocus Ads:

Spoiler

Get a screenshot of the URL bar or copy/paste the whole URL into a thread on the General Discussion board with a description of the Ad.

Lex will need the Ad ID contained in that URL to report it to Adfocus' support team.

 

Posting your mod as a GitHub Repo:

Spoiler

When you have an issue with your mod the most helpful thing you can do when asking for help is to provide your code to those helping you. The most convenient way to do this is via GitHub or another source control hub.

When setting up a GitHub Repo it might seem easy to just upload everything, however this method has the potential for mistakes that could lead to trouble later on, it is recommended to use a Git client or to get comfortable with the Git command line. The following instructions will use the Git Command Line and as such they assume you already have it installed and that you have created a repository.

 

  1. Open a command prompt (CMD, Powershell, Terminal, etc).
  2. Navigate to the folder you extracted Forge’s MDK to (the one that had all the licenses in).
  3. Run the following commands:
    1. git init
    2. git remote add origin [Your Repository's URL]
      • In the case of GitHub it should look like: https://GitHub.com/[Your Username]/[Repo Name].git
    3. git fetch
    4. git checkout --track origin/master
    5. git stage *
    6. git commit -m "[Your commit message]"
    7. git push
  4. Navigate to GitHub and you should now see most of the files.
    • note that it is intentional that some are not synced with GitHub and this is done with the (hidden) .gitignore file that Forge’s MDK has provided (hence the strictness on which folder git init is run from)
  5. Now you can share your GitHub link with those who you are asking for help.

[Workaround line, please ignore]

 

Link to comment
Share on other sites

7 minutes ago, DaemonUmbra said:

On my end it finds the pack.mcmeta just fine.

What IDE are you using?

Have you tried running the clean task and then the build task again?

I use eclipse, I have done ./gradlew clean then ./gradlew build and ran the mod it output in normal Minecraft (instead of in eclipse's version of Minecraft), however, I still got this (see attached picture).

I am not sure if it found pack.mcmeta or not although, as the names aren't loaded I'm guessing not.

 

Capture.PNG

Link to comment
Share on other sites

Is the pack.mcmeta file showing in eclipse's file manager?

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

 

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

 

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

Spoiler

Logs (Most issues require logs to diagnose):

Spoiler

Please post logs using one of the following sites (Thank you Lumber Wizard for the list):

https://gist.github.com/100MB Requires member (Free)

https://pastebin.com/: 512KB as guest, 10MB as Pro ($$$)

https://hastebin.com/: 400KB

Do NOT use sites like Mediafire, Dropbox, OneDrive, Google Drive, or a site that has a countdown before offering downloads.

 

What to provide:

...for Crashes and Runtime issues:

Minecraft 1.14.4 and newer:

Post debug.log

Older versions:

Please update...

 

...for Installer Issues:

Post your installer log, found in the same place you ran the installer

This log will be called either installer.log or named the same as the installer but with .log on the end

Note for Windows users:

Windows hides file extensions by default so the installer may appear without the .jar extension then when the .log is added the log will appear with the .jar extension

 

Where to get it:

Mojang Launcher: When using the Mojang launcher debug.log is found in .minecraft\logs.

 

Curse/Overwolf: If you are using the Curse Launcher, their configurations break Forge's log settings, fortunately there is an easier workaround than I originally thought, this works even with Curse's installation of the Minecraft launcher as long as it is not launched THROUGH Twitch:

Spoiler
  1. Make sure you have the correct version of Forge installed (some packs are heavily dependent on one specific build of Forge)
  2. Make a launcher profile targeting this version of Forge.
  3. Set the launcher profile's GameDir property to the pack's instance folder (not the instances folder, the folder that has the pack's name on it).
  4. Now launch the pack through that profile and follow the "Mojang Launcher" instructions above.

Video:

Spoiler

 

 

 

or alternately, 

 

Fallback ("No logs are generated"):

If you don't see logs generated in the usual place, provide the launcher_log.txt from .minecraft

 

Server Not Starting:

Spoiler

If your server does not start or a command window appears and immediately goes away, run the jar manually and provide the output.

 

Reporting Illegal/Inappropriate Adfocus Ads:

Spoiler

Get a screenshot of the URL bar or copy/paste the whole URL into a thread on the General Discussion board with a description of the Ad.

Lex will need the Ad ID contained in that URL to report it to Adfocus' support team.

 

Posting your mod as a GitHub Repo:

Spoiler

When you have an issue with your mod the most helpful thing you can do when asking for help is to provide your code to those helping you. The most convenient way to do this is via GitHub or another source control hub.

When setting up a GitHub Repo it might seem easy to just upload everything, however this method has the potential for mistakes that could lead to trouble later on, it is recommended to use a Git client or to get comfortable with the Git command line. The following instructions will use the Git Command Line and as such they assume you already have it installed and that you have created a repository.

 

  1. Open a command prompt (CMD, Powershell, Terminal, etc).
  2. Navigate to the folder you extracted Forge’s MDK to (the one that had all the licenses in).
  3. Run the following commands:
    1. git init
    2. git remote add origin [Your Repository's URL]
      • In the case of GitHub it should look like: https://GitHub.com/[Your Username]/[Repo Name].git
    3. git fetch
    4. git checkout --track origin/master
    5. git stage *
    6. git commit -m "[Your commit message]"
    7. git push
  4. Navigate to GitHub and you should now see most of the files.
    • note that it is intentional that some are not synced with GitHub and this is done with the (hidden) .gitignore file that Forge’s MDK has provided (hence the strictness on which folder git init is run from)
  5. Now you can share your GitHub link with those who you are asking for help.

[Workaround line, please ignore]

 

Link to comment
Share on other sites

Have you made sure your language is set to English (GB)? Because the default and fallback are English (US), which you don't appear to have a lang for.

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

 

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

 

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

Spoiler

Logs (Most issues require logs to diagnose):

Spoiler

Please post logs using one of the following sites (Thank you Lumber Wizard for the list):

https://gist.github.com/100MB Requires member (Free)

https://pastebin.com/: 512KB as guest, 10MB as Pro ($$$)

https://hastebin.com/: 400KB

Do NOT use sites like Mediafire, Dropbox, OneDrive, Google Drive, or a site that has a countdown before offering downloads.

 

What to provide:

...for Crashes and Runtime issues:

Minecraft 1.14.4 and newer:

Post debug.log

Older versions:

Please update...

 

...for Installer Issues:

Post your installer log, found in the same place you ran the installer

This log will be called either installer.log or named the same as the installer but with .log on the end

Note for Windows users:

Windows hides file extensions by default so the installer may appear without the .jar extension then when the .log is added the log will appear with the .jar extension

 

Where to get it:

Mojang Launcher: When using the Mojang launcher debug.log is found in .minecraft\logs.

 

Curse/Overwolf: If you are using the Curse Launcher, their configurations break Forge's log settings, fortunately there is an easier workaround than I originally thought, this works even with Curse's installation of the Minecraft launcher as long as it is not launched THROUGH Twitch:

Spoiler
  1. Make sure you have the correct version of Forge installed (some packs are heavily dependent on one specific build of Forge)
  2. Make a launcher profile targeting this version of Forge.
  3. Set the launcher profile's GameDir property to the pack's instance folder (not the instances folder, the folder that has the pack's name on it).
  4. Now launch the pack through that profile and follow the "Mojang Launcher" instructions above.

Video:

Spoiler

 

 

 

or alternately, 

 

Fallback ("No logs are generated"):

If you don't see logs generated in the usual place, provide the launcher_log.txt from .minecraft

 

Server Not Starting:

Spoiler

If your server does not start or a command window appears and immediately goes away, run the jar manually and provide the output.

 

Reporting Illegal/Inappropriate Adfocus Ads:

Spoiler

Get a screenshot of the URL bar or copy/paste the whole URL into a thread on the General Discussion board with a description of the Ad.

Lex will need the Ad ID contained in that URL to report it to Adfocus' support team.

 

Posting your mod as a GitHub Repo:

Spoiler

When you have an issue with your mod the most helpful thing you can do when asking for help is to provide your code to those helping you. The most convenient way to do this is via GitHub or another source control hub.

When setting up a GitHub Repo it might seem easy to just upload everything, however this method has the potential for mistakes that could lead to trouble later on, it is recommended to use a Git client or to get comfortable with the Git command line. The following instructions will use the Git Command Line and as such they assume you already have it installed and that you have created a repository.

 

  1. Open a command prompt (CMD, Powershell, Terminal, etc).
  2. Navigate to the folder you extracted Forge’s MDK to (the one that had all the licenses in).
  3. Run the following commands:
    1. git init
    2. git remote add origin [Your Repository's URL]
      • In the case of GitHub it should look like: https://GitHub.com/[Your Username]/[Repo Name].git
    3. git fetch
    4. git checkout --track origin/master
    5. git stage *
    6. git commit -m "[Your commit message]"
    7. git push
  4. Navigate to GitHub and you should now see most of the files.
    • note that it is intentional that some are not synced with GitHub and this is done with the (hidden) .gitignore file that Forge’s MDK has provided (hence the strictness on which folder git init is run from)
  5. Now you can share your GitHub link with those who you are asking for help.

[Workaround line, please ignore]

 

Link to comment
Share on other sites

We're both idiots...

It took me WAY too long to notice:

assests != assets

https://github.com/nibble90/MineSuperior/tree/master/src/main/resources/assests

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

 

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

 

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

Spoiler

Logs (Most issues require logs to diagnose):

Spoiler

Please post logs using one of the following sites (Thank you Lumber Wizard for the list):

https://gist.github.com/100MB Requires member (Free)

https://pastebin.com/: 512KB as guest, 10MB as Pro ($$$)

https://hastebin.com/: 400KB

Do NOT use sites like Mediafire, Dropbox, OneDrive, Google Drive, or a site that has a countdown before offering downloads.

 

What to provide:

...for Crashes and Runtime issues:

Minecraft 1.14.4 and newer:

Post debug.log

Older versions:

Please update...

 

...for Installer Issues:

Post your installer log, found in the same place you ran the installer

This log will be called either installer.log or named the same as the installer but with .log on the end

Note for Windows users:

Windows hides file extensions by default so the installer may appear without the .jar extension then when the .log is added the log will appear with the .jar extension

 

Where to get it:

Mojang Launcher: When using the Mojang launcher debug.log is found in .minecraft\logs.

 

Curse/Overwolf: If you are using the Curse Launcher, their configurations break Forge's log settings, fortunately there is an easier workaround than I originally thought, this works even with Curse's installation of the Minecraft launcher as long as it is not launched THROUGH Twitch:

Spoiler
  1. Make sure you have the correct version of Forge installed (some packs are heavily dependent on one specific build of Forge)
  2. Make a launcher profile targeting this version of Forge.
  3. Set the launcher profile's GameDir property to the pack's instance folder (not the instances folder, the folder that has the pack's name on it).
  4. Now launch the pack through that profile and follow the "Mojang Launcher" instructions above.

Video:

Spoiler

 

 

 

or alternately, 

 

Fallback ("No logs are generated"):

If you don't see logs generated in the usual place, provide the launcher_log.txt from .minecraft

 

Server Not Starting:

Spoiler

If your server does not start or a command window appears and immediately goes away, run the jar manually and provide the output.

 

Reporting Illegal/Inappropriate Adfocus Ads:

Spoiler

Get a screenshot of the URL bar or copy/paste the whole URL into a thread on the General Discussion board with a description of the Ad.

Lex will need the Ad ID contained in that URL to report it to Adfocus' support team.

 

Posting your mod as a GitHub Repo:

Spoiler

When you have an issue with your mod the most helpful thing you can do when asking for help is to provide your code to those helping you. The most convenient way to do this is via GitHub or another source control hub.

When setting up a GitHub Repo it might seem easy to just upload everything, however this method has the potential for mistakes that could lead to trouble later on, it is recommended to use a Git client or to get comfortable with the Git command line. The following instructions will use the Git Command Line and as such they assume you already have it installed and that you have created a repository.

 

  1. Open a command prompt (CMD, Powershell, Terminal, etc).
  2. Navigate to the folder you extracted Forge’s MDK to (the one that had all the licenses in).
  3. Run the following commands:
    1. git init
    2. git remote add origin [Your Repository's URL]
      • In the case of GitHub it should look like: https://GitHub.com/[Your Username]/[Repo Name].git
    3. git fetch
    4. git checkout --track origin/master
    5. git stage *
    6. git commit -m "[Your commit message]"
    7. git push
  4. Navigate to GitHub and you should now see most of the files.
    • note that it is intentional that some are not synced with GitHub and this is done with the (hidden) .gitignore file that Forge’s MDK has provided (hence the strictness on which folder git init is run from)
  5. Now you can share your GitHub link with those who you are asking for help.

[Workaround line, please ignore]

 

Link to comment
Share on other sites

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



×
×
  • Create New...

Important Information

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