• S'inscrire
    • Se connecter
    • Recherche
    • Récent
    • Mots-clés
    • Populaire
    • Utilisateurs
    • Groupes

    Non résolu Problème avec les noms des items et blocks

    Sans suite
    1.7.10
    2
    25
    1496
    Charger plus de messages
    • Du plus ancien au plus récent
    • Du plus récent au plus ancien
    • Les plus votés
    Répondre
    • Répondre à l'aide d'un nouveau sujet
    Se connecter pour répondre
    Ce sujet a été supprimé. Seuls les utilisateurs avec les droits d'administration peuvent le voir.
    • Ravriel
      Ravriel dernière édition par

      Bonjour,
      J’ai créé un début de mod mais le nom de mes items et blocks dans le jeu sont avec item.nomdublockouitem.name 😕 Voici le code :

      package com.ravriel.pfm;
      
      import com.jcraft.jorbis.Block;
      import com.ravriel.pfm.proxy.CommonProxy;
      
      import cpw.mods.fml.common.Mod;
      import cpw.mods.fml.common.Mod.EventHandler;
      import cpw.mods.fml.common.SidedProxy;
      import cpw.mods.fml.common.event.FMLInitializationEvent;
      import cpw.mods.fml.common.event.FMLPostInitializationEvent;
      import cpw.mods.fml.common.event.FMLPreInitializationEvent;
      import cpw.mods.fml.common.registry.GameRegistry;
      import net.minecraft.block.material.Material;
      import net.minecraft.item.Item;
      
      @Mod(modid = Reference.MOD_ID, name = Reference.MOD_NAME, version = Reference.VERSION)
      
      public class pfm
      {
      	
      	@SidedProxy(clientSide = Reference.CLIENT_PROXY, serverSide = Reference.SERVER_PROXY)
      	public static CommonProxy proxy;
      	
      	public static net.minecraft.block.Block Plasma_Ore; 
      	public static Item Plasma_Nugget; 
      	public static Item Plasma_Gem;
      	
      	@EventHandler
      	public void preInit(FMLPreInitializationEvent event)
      	{
      		
      		Plasma_Ore = new Plasma_Ore(Material.rock).setBlockName("PlasmaOre").setBlockTextureName(Reference.MOD_ID + ":plasma_ore"); 
      		GameRegistry.registerBlock(Plasma_Ore, "plasma_ore"); 
      		
      		Plasma_Nugget = new Plasma_Nugget(12000).setUnlocalizedName("PlasmaNugget").setTextureName(Reference.MOD_ID + ":plasma_nugget"); 
      		GameRegistry.registerItem(Plasma_Nugget, "plasma_nugget", "pfm"); 
      		
      		Plasma_Gem = new Plasma_Gem(12001).setUnlocalizedName("PlasmaGem").setTextureName(Reference.MOD_ID + ":plasma_gem");
      		GameRegistry.registerItem(Plasma_Gem, "plasma_gem", "pfm");
      		
      	}
      
      	@EventHandler
      	public void Init(FMLInitializationEvent event)
      	{
      		proxy.registerRender();
      	}
      	
      	@EventHandler
      	public void postInit(FMLPostInitializationEvent event)
      	{
      		
      	}
      	
      	
      }
      
      tile.PlasmaOre.name=Plasma Ore
      item.PlasmaNugget.name=Plasma Nugget
      item.PlasmaGem.name=Plasma Gem
      

      Pourriez vous m’aider ?
      Merci d’avance.

      1 réponse Dernière réponse Répondre Citer 0
      • robin4002
        robin4002 Moddeurs confirmés Rédacteurs Administrateurs dernière édition par

        Salut,
        Ton fichier de lang se trouve où ?

        1 réponse Dernière réponse Répondre Citer 0
        • Ravriel
          Ravriel dernière édition par

          Dans src/main/ressources/asset/pfm(c’est mon modid)/lang
          (Sous eclipse : src/main/ressources asset.pfm.lang)
          Mes langues sont :

          • en_US

          • fr_FR

          1 réponse Dernière réponse Répondre Citer 0
          • robin4002
            robin4002 Moddeurs confirmés Rédacteurs Administrateurs dernière édition par

            Les fichiers ont bien l’extension .lang ?

            1 réponse Dernière réponse Répondre Citer 0
            • Ravriel
              Ravriel dernière édition par Ravriel

              oui :

              en_US.lang

              fr_FR.lang

              1 réponse Dernière réponse Répondre Citer 0
              • robin4002
                robin4002 Moddeurs confirmés Rédacteurs Administrateurs dernière édition par

                Ah, j’ai trouvé le problème, asset devrait être assets

                Ravriel 1 réponse Dernière réponse Répondre Citer 0
                • Ravriel
                  Ravriel dernière édition par

                  aaah. Merci je vais essayer

                  1 réponse Dernière réponse Répondre Citer 0
                  • Ravriel
                    Ravriel @robin4002 dernière édition par

                    @robin4002 eheh non désolé j’ai oublié le “s” ici mais pas dans les fichiers (en plus la texture fonctionne :/) donc ce n’est pas ça…

                    1 réponse Dernière réponse Répondre Citer 0
                    • robin4002
                      robin4002 Moddeurs confirmés Rédacteurs Administrateurs dernière édition par

                      Fais voir ta classe Reference ?

                      Ravriel 1 réponse Dernière réponse Répondre Citer 0
                      • Ravriel
                        Ravriel dernière édition par

                        Ce message a été supprimé !
                        1 réponse Dernière réponse Répondre Citer 0
                        • Ravriel
                          Ravriel @robin4002 dernière édition par

                          @robin4002

                          package com.ravriel.pfm;
                          
                          public class Reference
                          {
                          	public static final String MOD_ID = "pfm";
                          	public static final String MOD_NAME = "Plasmania Faction Mod";
                          	public static final String VERSION = "0.1";
                          	public static final String CLIENT_PROXY = "com.ravriel.pfm.proxy.ClientProxy";
                          	public static final String SERVER_PROXY = "com.ravriel.pfm.proxy.CommonProxy";
                          }
                          
                          1 réponse Dernière réponse Répondre Citer 0
                          • robin4002
                            robin4002 Moddeurs confirmés Rédacteurs Administrateurs dernière édition par

                            Je ne vois pas du tout où est le problème 😕

                            1 réponse Dernière réponse Répondre Citer 0
                            • Ravriel
                              Ravriel dernière édition par

                              Ce message a été supprimé !
                              1 réponse Dernière réponse Répondre Citer 0
                              • Ravriel
                                Ravriel dernière édition par Ravriel

                                0_1541872448045_855b0ebe-b00c-4b67-80ba-45bf749ee628-image.png

                                tu vois (fait pas attention à la texture c’est que j’en ai pas fait sur celle d’a coté

                                1 réponse Dernière réponse Répondre Citer 0
                                • robin4002
                                  robin4002 Moddeurs confirmés Rédacteurs Administrateurs dernière édition par

                                  Ce que je voulais dire, c’est que je ne vois pas quel est la cause du problème.
                                  Tout est bon niveau contenu des fichiers et leur emplacement 😕

                                  Il n’y a rien d’anormal dans les logs ?

                                  1 réponse Dernière réponse Répondre Citer 0
                                  • Ravriel
                                    Ravriel dernière édition par

                                    Voici les dernier logs (il me semble) :

                                    [18:52:42] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
                                    [18:52:42] [main/INFO] [FML/]: Forge Mod Loader version 7.99.36.1558 for Minecraft 1.7.10 loading
                                    [18:52:42] [main/INFO] [FML/]: Java is Java HotSpot(TM) Client VM, version 1.8.0_171, running on Windows 10:x86:10.0, installed at C:\Program Files (x86)\Java\jre1.8.0_171
                                    [18:52:42] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\Ravenne\Documents\PlasmaniaFactionMod\bin;C:\Users\Ravenne\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\1.3.9\40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf\jsr305-1.3.9.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.0.3\f9e364ae2a66ce2a543012a4668856e84e5dab74\asm-debug-all-5.0.3.jar;C:\Users\Ravenne\.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;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\Ravenne\.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;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\Ravenne\.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;C:\Users\Ravenne\.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;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-xml_2.11\1.0.2\7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0\scala-xml_2.11-1.0.2.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.5\6065cc95c661255349c1d0756657be17c29a4fd3\jopt-simple-4.5.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.3.5\807ae355ee63583becd7ea60e76aab1532bb42e\realms-1.3.5.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.3.1\a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d\vecmath-1.3.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.10.Final\9e50bd52ffe257a0e2cd8d971688d6ce7d174325\netty-all-4.0.10.Final.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.16\ef1582b11fd0943d069cdcb72e99008ac209a283\authlib-1.5.16.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.1\f58c5aabcef0e41718a564be9f8e412fff8db847\lwjgl-2.9.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.1\290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e\lwjgl_util-2.9.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\5.16\1f55f009c61637c10c0acfb8b5ffc600f30044b4\twitch-5.16.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\Ravenne\.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;C:\Users\Ravenne\.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;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\7c6affe439099806a4f552da14c42f9d643d8b23\twitch-platform-5.16-natives-windows-32.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\39d0c3d363735b4785598e0e7fbf8297c706a9f9\twitch-platform-5.16-natives-windows-64.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\62503ee712766cf77f97252e5902786fd834b8c5\twitch-platform-5.16-natives-osx.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\18215140f010c05b9f86ef6f0f8871954d2ccebf\twitch-external-platform-4.5-natives-windows-32.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\c3cde57891b935d41b6680a9c5e1502eeab76d86\twitch-external-platform-4.5-natives-windows-64.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\4c517eca808522457dd95ee8fc1fbcdbb602efbe\lwjgl-platform-2.9.1-natives-windows.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\aa9aae879af8eb378e22cfc64db56ec2ca9a44d1\lwjgl-platform-2.9.1-natives-linux.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac\lwjgl-platform-2.9.1-natives-osx.jar;C:\Users\Ravenne\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\start
                                    [18:52:42] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files (x86)\Java\jre1.8.0_171\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:/Program Files (x86)/Java/jre1.8.0_171/bin/client;C:/Program Files (x86)/Java/jre1.8.0_171/bin;C:/Program Files (x86)/Java/jre1.8.0_171/lib/i386;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\Git\cmd;C:\Program Files\Java\jdk1.8.0_144\bin;;C:\WINDOWS\System32\OpenSSH\;C:\Users\Ravenne\AppData\Local\Microsoft\WindowsApps;;C:\Users\Ravenne\Desktop\Eclipse Oxygen;;.;C:/Users/Ravenne/.gradle/caches/minecraft/net/minecraft/minecraft_natives/1.7.10
                                    [18:52:42] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
                                    [18:52:42] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin
                                    [18:52:42] [main/DEBUG] [FML/]: Added access transformer class cpw.mods.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
                                    [18:52:42] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin
                                    [18:52:42] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin
                                    [18:52:42] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.transformers.ForgeAccessTransformer to enqueued access transformers
                                    [18:52:42] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin
                                    [18:52:42] [main/DEBUG] [FML/]: All fundamental core mods are successfully located
                                    [18:52:42] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\Ravenne\Documents\PlasmaniaFactionMod\eclipse\.
                                    [18:52:42] [main/DEBUG] [FML/]: Discovering coremods
                                    [18:52:42] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
                                    [18:52:42] [main/INFO] [GradleStart/]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin
                                    [18:52:42] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
                                    [18:52:42] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                    [18:52:42] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
                                    [18:52:42] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
                                    [18:52:42] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                    [18:52:42] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                    [18:52:42] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                                    [18:52:42] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} class transformers
                                    [18:52:42] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.MarkerTransformer
                                    [18:52:42] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.SideTransformer
                                    [18:52:42] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.EventSubscriptionTransformer
                                    [18:52:42] [main/DEBUG] [FML/]: Injection complete
                                    [18:52:42] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin}
                                    [18:52:42] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin
                                    [18:52:43] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
                                    [18:52:44] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing
                                    [18:52:44] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully
                                    [18:52:44] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                                    [18:52:44] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers
                                    [18:52:44] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.classloading.FluidIdTransformer
                                    [18:52:44] [main/DEBUG] [FML/]: Injection complete
                                    [18:52:44] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}
                                    [18:52:44] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin
                                    [18:52:44] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully
                                    [18:52:44] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
                                    [18:52:44] [main/DEBUG] [FML/]: Loaded 57 rules from AccessTransformer config file fml_at.cfg
                                    [18:52:44] [main/DEBUG] [FML/]: Loaded 89 rules from AccessTransformer config file forge_at.cfg
                                    [18:52:44] [main/DEBUG] [FML/]: Validating minecraft
                                    [18:52:44] [main/DEBUG] [FML/]: Minecraft validated, launching...
                                    [18:52:44] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
                                    [18:52:44] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
                                    [18:52:44] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
                                    [18:52:44] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}
                                    [18:52:46] [Client thread/INFO] [STDOUT/]: [tv.twitch.StandardCoreAPI:<init>:16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's.
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0,022s
                                    [18:52:46] [Client thread/INFO] [STDOUT/]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ----
                                    // There are four lights!
                                    
                                    Time: 10/11/18 18:52
                                    Description: Loading screen debug info
                                    
                                    This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR
                                    
                                    
                                    A detailed walkthrough of the error, its code path and all known details is as follows:
                                    ---------------------------------------------------------------------------------------
                                    
                                    -- System Details --
                                    Details:
                                    	Minecraft Version: 1.7.10
                                    	Operating System: Windows 10 (x86) version 10.0
                                    	Java Version: 1.8.0_171, Oracle Corporation
                                    	Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
                                    	Memory: 820471744 bytes (782 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)
                                    	JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
                                    	AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
                                    	IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
                                    	FML: 
                                    	GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.5.13399 Compatibility Profile Context 15.201.1151.1008' Renderer: 'AMD Radeon HD 5800 Series'
                                    [18:52:46] [Client thread/INFO] [MinecraftForge/]: Attempting early MinecraftForge initialization
                                    [18:52:46] [Client thread/INFO] [FML/]: MinecraftForge v10.13.4.1558 Initialized
                                    [18:52:46] [Client thread/INFO] [FML/]: Replaced 183 ore recipies
                                    [18:52:46] [Client thread/INFO] [MinecraftForge/]: Completed early MinecraftForge initialization
                                    [18:52:46] [Client thread/DEBUG] [FML/]: File C:\Users\Ravenne\Documents\PlasmaniaFactionMod\eclipse\config\injectedDependencies.json not found. No dependencies injected
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [cpw.mods.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Ravenne\Documents\PlasmaniaFactionMod\bin, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\1.3.9\40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf\jsr305-1.3.9.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.0.3\f9e364ae2a66ce2a543012a4668856e84e5dab74\asm-debug-all-5.0.3.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-xml_2.11\1.0.2\7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0\scala-xml_2.11-1.0.2.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.5\6065cc95c661255349c1d0756657be17c29a4fd3\jopt-simple-4.5.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.3.5\807ae355ee63583becd7ea60e76aab1532bb42e\realms-1.3.5.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.3.1\a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d\vecmath-1.3.1.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.10.Final\9e50bd52ffe257a0e2cd8d971688d6ce7d174325\netty-all-4.0.10.Final.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.16\ef1582b11fd0943d069cdcb72e99008ac209a283\authlib-1.5.16.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.1\f58c5aabcef0e41718a564be9f8e412fff8db847\lwjgl-2.9.1.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.1\290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e\lwjgl_util-2.9.1.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\5.16\1f55f009c61637c10c0acfb8b5ffc600f30044b4\twitch-5.16.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\7c6affe439099806a4f552da14c42f9d643d8b23\twitch-platform-5.16-natives-windows-32.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\39d0c3d363735b4785598e0e7fbf8297c706a9f9\twitch-platform-5.16-natives-windows-64.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\62503ee712766cf77f97252e5902786fd834b8c5\twitch-platform-5.16-natives-osx.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\18215140f010c05b9f86ef6f0f8871954d2ccebf\twitch-external-platform-4.5-natives-windows-32.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\c3cde57891b935d41b6680a9c5e1502eeab76d86\twitch-external-platform-4.5-natives-windows-64.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\4c517eca808522457dd95ee8fc1fbcdbb602efbe\lwjgl-platform-2.9.1-natives-windows.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\aa9aae879af8eb378e22cfc64db56ec2ca9a44d1\lwjgl-platform-2.9.1-natives-linux.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac\lwjgl-platform-2.9.1-natives-osx.jar, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Ravenne\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\start, examining for mod candidates
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully
                                    [18:52:46] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer
                                    [18:52:46] [Client thread/INFO] [FML/]: Searching C:\Users\Ravenne\Documents\PlasmaniaFactionMod\eclipse\mods for mods
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin
                                    [18:52:46] [Client thread/TRACE] [FML/]: Recursing into package assets
                                    [18:52:46] [Client thread/TRACE] [FML/]: Recursing into package assets.pfm
                                    [18:52:46] [Client thread/TRACE] [FML/]: Recursing into package assets.pfm.lang
                                    [18:52:46] [Client thread/TRACE] [FML/]: Recursing into package assets.pfm.textures
                                    [18:52:46] [Client thread/TRACE] [FML/]: Recursing into package assets.pfm.textures.blocks
                                    [18:52:46] [Client thread/TRACE] [FML/]: Recursing into package assets.pfm.textures.items
                                    [18:52:46] [Client thread/TRACE] [FML/]: Recursing into package com
                                    [18:52:46] [Client thread/TRACE] [FML/]: Recursing into package com.ravriel
                                    [18:52:46] [Client thread/TRACE] [FML/]: Recursing into package com.ravriel.pfm
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Identified a mod of type Lcpw/mods/fml/common/Mod; (com.ravriel.pfm.pfm) - loading
                                    [18:52:46] [Client thread/TRACE] [pfm/]: Parsed dependency info : [] [] []
                                    [18:52:46] [Client thread/TRACE] [FML/]: Recursing into package com.ravriel.pfm.proxy
                                    [18:52:46] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar for potential mods
                                    [18:52:46] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar appears to be missing an mcmod.info file
                                    [18:52:47] [Client thread/DEBUG] [FML/]: Examining file launchwrapper-1.12.jar for potential mods
                                    [18:52:47] [Client thread/DEBUG] [FML/]: The mod container launchwrapper-1.12.jar appears to be missing an mcmod.info file
                                    [18:52:47] [Client thread/DEBUG] [FML/]: Examining file jsr305-1.3.9.jar for potential mods
                                    [18:52:47] [Client thread/DEBUG] [FML/]: The mod container jsr305-1.3.9.jar appears to be missing an mcmod.info file
                                    [18:52:47] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods
                                    [18:52:47] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file
                                    [18:52:47] [Client thread/DEBUG] [FML/]: Examining file akka-actor_2.11-2.3.3.jar for potential mods
                                    [18:52:47] [Client thread/DEBUG] [FML/]: The mod container akka-actor_2.11-2.3.3.jar appears to be missing an mcmod.info file
                                    [18:52:47] [Client thread/DEBUG] [FML/]: Examining file config-1.2.1.jar for potential mods
                                    [18:52:47] [Client thread/DEBUG] [FML/]: The mod container config-1.2.1.jar appears to be missing an mcmod.info file
                                    [18:52:47] [Client thread/DEBUG] [FML/]: Examining file scala-actors-migration_2.11-1.1.0.jar for potential mods
                                    [18:52:47] [Client thread/DEBUG] [FML/]: The mod container scala-actors-migration_2.11-1.1.0.jar appears to be missing an mcmod.info file
                                    [18:52:47] [Client thread/DEBUG] [FML/]: Examining file scala-compiler-2.11.1.jar for potential mods
                                    [18:52:47] [Client thread/DEBUG] [FML/]: The mod container scala-compiler-2.11.1.jar appears to be missing an mcmod.info file
                                    [18:52:50] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-library_2.11-1.0.2.jar for potential mods
                                    [18:52:50] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-library_2.11-1.0.2.jar appears to be missing an mcmod.info file
                                    [18:52:50] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-plugin_2.11.1-1.0.2.jar for potential mods
                                    [18:52:50] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-plugin_2.11.1-1.0.2.jar appears to be missing an mcmod.info file
                                    [18:52:50] [Client thread/DEBUG] [FML/]: Examining file scala-library-2.11.1.jar for potential mods
                                    [18:52:50] [Client thread/DEBUG] [FML/]: The mod container scala-library-2.11.1.jar appears to be missing an mcmod.info file
                                    [18:52:51] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods
                                    [18:52:51] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file
                                    [18:52:51] [Client thread/DEBUG] [FML/]: Examining file scala-reflect-2.11.1.jar for potential mods
                                    [18:52:51] [Client thread/DEBUG] [FML/]: The mod container scala-reflect-2.11.1.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file scala-swing_2.11-1.0.1.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container scala-swing_2.11-1.0.1.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file jopt-simple-4.5.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container jopt-simple-4.5.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file lzma-0.0.1.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container lzma-0.0.1.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file realms-1.3.5.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container realms-1.3.5.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file commons-compress-1.8.1.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container commons-compress-1.8.1.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file httpclient-4.3.3.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container httpclient-4.3.3.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file commons-logging-1.1.3.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container commons-logging-1.1.3.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file httpcore-4.3.2.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container httpcore-4.3.2.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file vecmath-1.3.1.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container vecmath-1.3.1.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file trove4j-3.0.3.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container trove4j-3.0.3.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file icu4j-core-mojang-51.2.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container icu4j-core-mojang-51.2.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file codecjorbis-20101023.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container codecjorbis-20101023.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file codecwav-20101023.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container codecwav-20101023.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file librarylwjglopenal-20100824.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container librarylwjglopenal-20100824.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file soundsystem-20120107.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container soundsystem-20120107.jar appears to be missing an mcmod.info file
                                    [18:52:52] [Client thread/DEBUG] [FML/]: Examining file netty-all-4.0.10.Final.jar for potential mods
                                    [18:52:52] [Client thread/DEBUG] [FML/]: The mod container netty-all-4.0.10.Final.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file guava-17.0.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container guava-17.0.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file commons-lang3-3.3.2.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container commons-lang3-3.3.2.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file commons-io-2.4.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container commons-io-2.4.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file commons-codec-1.9.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container commons-codec-1.9.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file jinput-2.0.5.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container jinput-2.0.5.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file jutils-1.0.0.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container jutils-1.0.0.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file gson-2.2.4.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container gson-2.2.4.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file authlib-1.5.16.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container authlib-1.5.16.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file log4j-api-2.0-beta9.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container log4j-api-2.0-beta9.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file log4j-core-2.0-beta9.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container log4j-core-2.0-beta9.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file lwjgl-2.9.1.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container lwjgl-2.9.1.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file lwjgl_util-2.9.1.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container lwjgl_util-2.9.1.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file twitch-5.16.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container twitch-5.16.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file scala-actors-2.11.0.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container scala-actors-2.11.0.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-linux.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-linux.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-windows.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-windows.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-osx.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-osx.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-32.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-32.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-64.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-64.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-osx.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-osx.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-32.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-32.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-64.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-64.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-windows.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-windows.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-linux.jar for potential mods
                                    [18:52:53] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-linux.jar appears to be missing an mcmod.info file
                                    [18:52:53] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-osx.jar for potential mods
                                    [18:52:54] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-osx.jar appears to be missing an mcmod.info file
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods
                                    [18:52:54] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start
                                    [18:52:54] [Client thread/TRACE] [FML/]: Recursing into package net
                                    [18:52:54] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge
                                    [18:52:54] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle
                                    [18:52:54] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers
                                    [18:52:54] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load
                                    [18:52:54] [Client thread/TRACE] [FML/]: Received a system property request ''
                                    [18:52:54] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods
                                    [18:52:54] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar [en_US, af_ZA, ar_SA, br_FR, ca_ES, cs_CZ, da_DK, de_DE, el_GR, en_US, es_ES, fa_IR, fi_FI, fr_FR, he_IL, hu_HU, it_IT, ja_JP, ko_KR, lt_LT, nb_NO, nl_NL, nn_NO, no_NO, pl_PL, pt_BR, pt_PT, ro_RO, ru_RU, sl_SI, sr_SP, sv_SE, tr_TR, uk_UA, vi_VN, zh_CN, zh_TW, en_US]
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar [en_US, af_ZA, ar_SA, br_FR, ca_ES, cs_CZ, da_DK, de_DE, el_GR, en_US, es_ES, fa_IR, fi_FI, fr_FR, he_IL, hu_HU, it_IT, ja_JP, ko_KR, lt_LT, nb_NO, nl_NL, nn_NO, no_NO, pl_PL, pt_BR, pt_PT, ro_RO, ru_RU, sl_SI, sr_SP, sv_SE, tr_TR, uk_UA, vi_VN, zh_CN, zh_TW, en_US]
                                    [18:52:54] [Client thread/DEBUG] [pfm/]: Enabling mod pfm
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Injecting found translation assets for lang en_US at assets/pfm/lang/en_US.lang into language system
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Injecting found translation assets for lang fr_FR at assets/pfm/lang/fr_FR.lang into language system
                                    [18:52:54] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied
                                    [18:52:54] [Client thread/TRACE] [FML/]: All mod requirements are satisfied
                                    [18:52:54] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list
                                    [18:52:54] [Client thread/TRACE] [FML/]: Mod sorting completed successfully
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Mod sorting data
                                    [18:52:54] [Client thread/DEBUG] [FML/]: 	pfm(Plasmania Faction Mod:0.1): bin ()
                                    [18:52:54] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp
                                    [18:52:54] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0,003s
                                    [18:52:54] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML
                                    [18:52:54] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists
                                    [18:52:54] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection
                                    [18:52:54] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (7.10.99.99)
                                    [18:52:54] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, pfm] at CLIENT
                                    [18:52:54] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, pfm] at SERVER
                                    [18:52:54] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 0,267s
                                    [18:52:54] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge
                                    [18:52:54] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed
                                    [18:52:54] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection
                                    [18:52:54] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (10.13.4.1558)
                                    [18:52:54] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0,008s
                                    [18:52:54] [Client thread/TRACE] [pfm/pfm]: Sending event FMLConstructionEvent to mod pfm
                                    [18:52:54] [Client thread/TRACE] [FML/pfm]: Mod pfm is using network checker : Accepting version 0.1
                                    [18:52:54] [Client thread/TRACE] [FML/pfm]: Testing mod pfm to verify it accepts its own version in a remote connection
                                    [18:52:54] [Client thread/TRACE] [FML/pfm]: The mod pfm accepts its own version (0.1)
                                    [18:52:54] [Client thread/DEBUG] [FML/pfm]: Attempting to inject @SidedProxy classes into pfm
                                    [18:52:54] [Client thread/TRACE] [pfm/pfm]: Sent event FMLConstructionEvent to mod pfm
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Plasmania Faction Mod took 0,013s
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 0,291s
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Mod signature data
                                    [18:52:54] [Client thread/DEBUG] [FML/]:  	Valid Signatures:
                                    [18:52:54] [Client thread/DEBUG] [FML/]:  	Missing Signatures:
                                    [18:52:54] [Client thread/DEBUG] [FML/]: 		mcp	(Minecraft Coder Pack	9.05)	minecraft.jar
                                    [18:52:54] [Client thread/DEBUG] [FML/]: 		FML	(Forge Mod Loader	7.10.99.99)	forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar
                                    [18:52:54] [Client thread/DEBUG] [FML/]: 		Forge	(Minecraft Forge	10.13.4.1558)	forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar
                                    [18:52:54] [Client thread/DEBUG] [FML/]: 		pfm	(Plasmania Faction Mod	0.1)	bin
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0,004s
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0,006s
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0,006s
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Plasmania Faction Mod took 0,003s
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0,022s
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0,022s
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0,040s
                                    [18:52:54] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
                                    [18:52:54] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
                                    [18:52:54] [Client thread/DEBUG] [Plasmania Faction Mod/]: Mod Plasmania Faction Mod is missing a pack.mcmeta file, substituting a dummy one
                                    [18:52:54] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations
                                    [18:52:54] [Client thread/INFO] [FML/]: Found 341 ObjectHolder annotations
                                    [18:52:54] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations
                                    [18:52:54] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations
                                    [18:52:54] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp
                                    [18:52:54] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0,000s
                                    [18:52:54] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML
                                    [18:52:54] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0,000s
                                    [18:52:54] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge
                                    [18:52:54] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0
                                    [18:52:54] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0,023s
                                    [18:52:54] [Client thread/TRACE] [pfm/pfm]: Sending event FMLPreInitializationEvent to mod pfm
                                    [18:52:54] [Client thread/TRACE] [pfm/pfm]: Sent event FMLPreInitializationEvent to mod pfm
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Plasmania Faction Mod took 0,013s
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 0,037s
                                    [18:52:54] [Client thread/INFO] [FML/]: Applying holder lookups
                                    [18:52:54] [Client thread/INFO] [FML/]: Holder lookups applied
                                    [18:52:54] [Client thread/INFO] [FML/]: Injecting itemstacks
                                    [18:52:54] [Client thread/INFO] [FML/]: Itemstack injection complete
                                    [18:52:54] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0,000s
                                    [18:52:54] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                    [18:52:54] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
                                    [18:52:54] [Thread-8/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
                                    [18:52:54] [Thread-8/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
                                    [18:52:54] [Thread-8/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
                                    [18:52:55] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                    [18:52:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 1,212s
                                    [18:52:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0,005s
                                    [18:52:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0,002s
                                    [18:52:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0,008s
                                    [18:52:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0,009s
                                    [18:52:55] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Render Manager took 0,130s
                                    [18:52:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0,000s
                                    [18:52:55] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0,021s
                                    [18:52:55] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading GL properties took 0,001s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Render Global instance took 0,063s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Building Blocks Texture took 0,012s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Anisotropy and Mipmaps took 0,000s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0,001s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,003s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Blocks Texture took 0,009s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0,000s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,001s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Items Texture took 0,004s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Viewport took 0,002s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 0,242s
                                    [18:52:56] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp
                                    [18:52:56] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0,000s
                                    [18:52:56] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML
                                    [18:52:56] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0,000s
                                    [18:52:56] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge
                                    [18:52:56] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0,000s
                                    [18:52:56] [Client thread/TRACE] [pfm/pfm]: Sending event FMLInitializationEvent to mod pfm
                                    [18:52:56] [Client thread/TRACE] [pfm/pfm]: Sent event FMLInitializationEvent to mod pfm
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Plasmania Faction Mod took 0,000s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0,001s
                                    [18:52:56] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp
                                    [18:52:56] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp
                                    [18:52:56] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0,003s
                                    [18:52:56] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML
                                    [18:52:56] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML
                                    [18:52:56] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0,000s
                                    [18:52:56] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge
                                    [18:52:56] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge
                                    [18:52:56] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0,000s
                                    [18:52:56] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod pfm
                                    [18:52:56] [Client thread/TRACE] [pfm/pfm]: Sending event IMCEvent to mod pfm
                                    [18:52:56] [Client thread/TRACE] [pfm/pfm]: Sent event IMCEvent to mod pfm
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Plasmania Faction Mod took 0,000s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0,004s
                                    [18:52:56] [Client thread/INFO] [FML/]: Injecting itemstacks
                                    [18:52:56] [Client thread/INFO] [FML/]: Itemstack injection complete
                                    [18:52:56] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp
                                    [18:52:56] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0,000s
                                    [18:52:56] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML
                                    [18:52:56] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0,000s
                                    [18:52:56] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge
                                    [18:52:56] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0,078s
                                    [18:52:56] [Client thread/TRACE] [pfm/pfm]: Sending event FMLPostInitializationEvent to mod pfm
                                    [18:52:56] [Client thread/TRACE] [pfm/pfm]: Sent event FMLPostInitializationEvent to mod pfm
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Plasmania Faction Mod took 0,000s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0,079s
                                    [18:52:56] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp
                                    [18:52:56] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0,000s
                                    [18:52:56] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML
                                    [18:52:56] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0,000s
                                    [18:52:56] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge
                                    [18:52:56] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking:
                                    [18:52:56] [Client thread/DEBUG] [FML/Forge]:   11: RecipeEntry("Before", UNKNOWN, )
                                    [18:52:56] [Client thread/DEBUG] [FML/Forge]:   10: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless
                                    [18:52:56] [Client thread/DEBUG] [FML/Forge]:   9: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped
                                    [18:52:56] [Client thread/DEBUG] [FML/Forge]:   8: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped
                                    [18:52:56] [Client thread/DEBUG] [FML/Forge]:   7: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped
                                    [18:52:56] [Client thread/DEBUG] [FML/Forge]:   6: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless
                                    [18:52:56] [Client thread/DEBUG] [FML/Forge]:   5: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless
                                    [18:52:56] [Client thread/DEBUG] [FML/Forge]:   4: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless
                                    [18:52:56] [Client thread/DEBUG] [FML/Forge]:   3: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless
                                    [18:52:56] [Client thread/DEBUG] [FML/Forge]:   2: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless
                                    [18:52:56] [Client thread/DEBUG] [FML/Forge]:   1: RecipeEntry("After", UNKNOWN, )
                                    [18:52:56] [Client thread/DEBUG] [FML/Forge]: Sorting recipies
                                    [18:52:56] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0,006s
                                    [18:52:56] [Client thread/TRACE] [pfm/pfm]: Sending event FMLLoadCompleteEvent to mod pfm
                                    [18:52:56] [Client thread/TRACE] [pfm/pfm]: Sent event FMLLoadCompleteEvent to mod pfm
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Plasmania Faction Mod took 0,000s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0,008s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Freezing block and item id maps
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Registry consistency check successful
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Registry consistency check successful
                                    [18:52:56] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0,001s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0,005s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0,006s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Plasmania Faction Mod took 0,001s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: Texture Loading took 0,120s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: Mipmap generation took 0,144s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0,022s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,130s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0,396s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0,004s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0,000s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0,004s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: Texture Loading took 0,056s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: Mipmap generation took 0,007s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0,008s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,020s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/items.png took 0,085s
                                    [18:52:56] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0,488s
                                    [18:52:56] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                    [18:52:56] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
                                    [18:52:56] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:     Author: Paul Lamb, www.paulscode.com
                                    [18:52:56] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                    [18:52:56] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                    [18:52:56] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
                                    [18:52:57] [Thread-10/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
                                    [18:52:57] [Thread-10/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
                                    [18:52:57] [Thread-10/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
                                    [18:52:57] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                    [18:52:58] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 1,873s
                                    [18:52:58] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 1,874s
                                    [18:52:58] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 1,887s
                                    [18:52:58] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
                                    [18:52:58] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
                                    [18:52:58] [Client thread/DEBUG] [Plasmania Faction Mod/]: Mod Plasmania Faction Mod is missing a pack.mcmeta file, substituting a dummy one
                                    [18:52:58] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 11,372s
                                    [18:52:58] [Client thread/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
                                    [18:52:58] [Client thread/ERROR] [TEXTURE ERRORS/]: The following texture errors were found.
                                    [18:52:58] [Client thread/ERROR] [TEXTURE ERRORS/]: ==================================================
                                    [18:52:58] [Client thread/ERROR] [TEXTURE ERRORS/]:   DOMAIN pfm
                                    [18:52:58] [Client thread/ERROR] [TEXTURE ERRORS/]: --------------------------------------------------
                                    [18:52:58] [Client thread/ERROR] [TEXTURE ERRORS/]:   domain pfm is missing 1 texture
                                    [18:52:58] [Client thread/ERROR] [TEXTURE ERRORS/]:     domain pfm has 1 location:
                                    [18:52:58] [Client thread/ERROR] [TEXTURE ERRORS/]:       mod pfm resources at C:\Users\Ravenne\Documents\PlasmaniaFactionMod\bin
                                    [18:52:58] [Client thread/ERROR] [TEXTURE ERRORS/]: -------------------------
                                    [18:52:58] [Client thread/ERROR] [TEXTURE ERRORS/]:     The missing resources for domain pfm are:
                                    [18:52:58] [Client thread/ERROR] [TEXTURE ERRORS/]:       textures/blocks/cerynium_ore.png
                                    [18:52:58] [Client thread/ERROR] [TEXTURE ERRORS/]: -------------------------
                                    [18:52:58] [Client thread/ERROR] [TEXTURE ERRORS/]:     No other errors exist for domain pfm
                                    [18:52:58] [Client thread/ERROR] [TEXTURE ERRORS/]: ==================================================
                                    [18:52:58] [Client thread/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
                                    [18:53:02] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                    [18:53:02] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
                                    [18:53:03] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:     Author: Paul Lamb, www.paulscode.com
                                    [18:53:03] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                    [18:53:05] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
                                    [18:53:05] [main/INFO] [FML/]: Forge Mod Loader version 7.99.36.1558 for Minecraft 1.7.10 loading
                                    [18:53:05] [main/INFO] [FML/]: Java is Java HotSpot(TM) Client VM, version 1.8.0_171, running on Windows 10:x86:10.0, installed at C:\Program Files (x86)\Java\jre1.8.0_171
                                    [18:53:05] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\Ravenne\Documents\PlasmaniaFactionMod\bin;C:\Users\Ravenne\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\1.3.9\40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf\jsr305-1.3.9.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.0.3\f9e364ae2a66ce2a543012a4668856e84e5dab74\asm-debug-all-5.0.3.jar;C:\Users\Ravenne\.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;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\Ravenne\.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;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\Ravenne\.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;C:\Users\Ravenne\.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;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-xml_2.11\1.0.2\7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0\scala-xml_2.11-1.0.2.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.5\6065cc95c661255349c1d0756657be17c29a4fd3\jopt-simple-4.5.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.3.5\807ae355ee63583becd7ea60e76aab1532bb42e\realms-1.3.5.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.3.1\a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d\vecmath-1.3.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.10.Final\9e50bd52ffe257a0e2cd8d971688d6ce7d174325\netty-all-4.0.10.Final.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.16\ef1582b11fd0943d069cdcb72e99008ac209a283\authlib-1.5.16.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.1\f58c5aabcef0e41718a564be9f8e412fff8db847\lwjgl-2.9.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.1\290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e\lwjgl_util-2.9.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\5.16\1f55f009c61637c10c0acfb8b5ffc600f30044b4\twitch-5.16.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\Ravenne\.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;C:\Users\Ravenne\.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;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\7c6affe439099806a4f552da14c42f9d643d8b23\twitch-platform-5.16-natives-windows-32.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\39d0c3d363735b4785598e0e7fbf8297c706a9f9\twitch-platform-5.16-natives-windows-64.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\62503ee712766cf77f97252e5902786fd834b8c5\twitch-platform-5.16-natives-osx.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\18215140f010c05b9f86ef6f0f8871954d2ccebf\twitch-external-platform-4.5-natives-windows-32.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\c3cde57891b935d41b6680a9c5e1502eeab76d86\twitch-external-platform-4.5-natives-windows-64.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\4c517eca808522457dd95ee8fc1fbcdbb602efbe\lwjgl-platform-2.9.1-natives-windows.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\aa9aae879af8eb378e22cfc64db56ec2ca9a44d1\lwjgl-platform-2.9.1-natives-linux.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac\lwjgl-platform-2.9.1-natives-osx.jar;C:\Users\Ravenne\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\start
                                    [18:53:05] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files (x86)\Java\jre1.8.0_171\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:/Program Files (x86)/Java/jre1.8.0_171/bin/client;C:/Program Files (x86)/Java/jre1.8.0_171/bin;C:/Program Files (x86)/Java/jre1.8.0_171/lib/i386;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\Git\cmd;C:\Program Files\Java\jdk1.8.0_144\bin;;C:\WINDOWS\System32\OpenSSH\;C:\Users\Ravenne\AppData\Local\Microsoft\WindowsApps;;C:\Users\Ravenne\Desktop\Eclipse Oxygen;;.;C:/Users/Ravenne/.gradle/caches/minecraft/net/minecraft/minecraft_natives/1.7.10
                                    [18:53:05] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
                                    [18:53:05] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin
                                    [18:53:05] [main/DEBUG] [FML/]: Added access transformer class cpw.mods.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
                                    [18:53:05] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin
                                    [18:53:05] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin
                                    [18:53:05] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.transformers.ForgeAccessTransformer to enqueued access transformers
                                    [18:53:05] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin
                                    [18:53:05] [main/DEBUG] [FML/]: All fundamental core mods are successfully located
                                    [18:53:05] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\Ravenne\Documents\PlasmaniaFactionMod\eclipse\.
                                    [18:53:05] [main/DEBUG] [FML/]: Discovering coremods
                                    [18:53:05] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
                                    [18:53:05] [main/INFO] [GradleStart/]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin
                                    [18:53:05] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
                                    [18:53:05] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                    [18:53:05] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
                                    [18:53:05] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
                                    [18:53:05] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                    [18:53:05] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                    [18:53:05] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                                    [18:53:05] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} class transformers
                                    [18:53:05] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.MarkerTransformer
                                    [18:53:05] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.SideTransformer
                                    [18:53:05] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.EventSubscriptionTransformer
                                    [18:53:05] [main/DEBUG] [FML/]: Injection complete
                                    [18:53:05] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin}
                                    [18:53:05] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin
                                    [18:53:05] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
                                    [18:53:07] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing
                                    [18:53:07] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully
                                    [18:53:07] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                                    [18:53:07] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers
                                    [18:53:07] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.classloading.FluidIdTransformer
                                    [18:53:07] [main/DEBUG] [FML/]: Injection complete
                                    [18:53:07] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}
                                    [18:53:07] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin
                                    [18:53:07] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully
                                    [18:53:07] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
                                    [18:53:07] [main/DEBUG] [FML/]: Loaded 57 rules from AccessTransformer config file fml_at.cfg
                                    [18:53:07] [main/DEBUG] [FML/]: Loaded 89 rules from AccessTransformer config file forge_at.cfg
                                    [18:53:07] [main/DEBUG] [FML/]: Validating minecraft
                                    [18:53:07] [main/DEBUG] [FML/]: Minecraft validated, launching...
                                    [18:53:07] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
                                    [18:53:07] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
                                    [18:53:07] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
                                    [18:53:07] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}
                                    [18:53:09] [Client thread/INFO] [STDOUT/]: [tv.twitch.StandardCoreAPI:<init>:16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's.
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0,059s
                                    [18:53:09] [Client thread/INFO] [STDOUT/]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ----
                                    // You're mean.
                                    
                                    Time: 10/11/18 18:53
                                    Description: Loading screen debug info
                                    
                                    This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR
                                    
                                    
                                    A detailed walkthrough of the error, its code path and all known details is as follows:
                                    ---------------------------------------------------------------------------------------
                                    
                                    -- System Details --
                                    Details:
                                    	Minecraft Version: 1.7.10
                                    	Operating System: Windows 10 (x86) version 10.0
                                    	Java Version: 1.8.0_171, Oracle Corporation
                                    	Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
                                    	Memory: 820487016 bytes (782 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)
                                    	JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
                                    	AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
                                    	IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
                                    	FML: 
                                    	GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.5.13399 Compatibility Profile Context 15.201.1151.1008' Renderer: 'AMD Radeon HD 5800 Series'
                                    [18:53:09] [Client thread/INFO] [MinecraftForge/]: Attempting early MinecraftForge initialization
                                    [18:53:09] [Client thread/INFO] [FML/]: MinecraftForge v10.13.4.1558 Initialized
                                    [18:53:09] [Client thread/INFO] [FML/]: Replaced 183 ore recipies
                                    [18:53:09] [Client thread/INFO] [MinecraftForge/]: Completed early MinecraftForge initialization
                                    [18:53:09] [Client thread/DEBUG] [FML/]: File C:\Users\Ravenne\Documents\PlasmaniaFactionMod\eclipse\config\injectedDependencies.json not found. No dependencies injected
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [cpw.mods.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Ravenne\Documents\PlasmaniaFactionMod\bin, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\1.3.9\40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf\jsr305-1.3.9.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.0.3\f9e364ae2a66ce2a543012a4668856e84e5dab74\asm-debug-all-5.0.3.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-xml_2.11\1.0.2\7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0\scala-xml_2.11-1.0.2.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.5\6065cc95c661255349c1d0756657be17c29a4fd3\jopt-simple-4.5.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.3.5\807ae355ee63583becd7ea60e76aab1532bb42e\realms-1.3.5.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.3.1\a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d\vecmath-1.3.1.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.10.Final\9e50bd52ffe257a0e2cd8d971688d6ce7d174325\netty-all-4.0.10.Final.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.16\ef1582b11fd0943d069cdcb72e99008ac209a283\authlib-1.5.16.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.1\f58c5aabcef0e41718a564be9f8e412fff8db847\lwjgl-2.9.1.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.1\290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e\lwjgl_util-2.9.1.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\5.16\1f55f009c61637c10c0acfb8b5ffc600f30044b4\twitch-5.16.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\7c6affe439099806a4f552da14c42f9d643d8b23\twitch-platform-5.16-natives-windows-32.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\39d0c3d363735b4785598e0e7fbf8297c706a9f9\twitch-platform-5.16-natives-windows-64.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\62503ee712766cf77f97252e5902786fd834b8c5\twitch-platform-5.16-natives-osx.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\18215140f010c05b9f86ef6f0f8871954d2ccebf\twitch-external-platform-4.5-natives-windows-32.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\c3cde57891b935d41b6680a9c5e1502eeab76d86\twitch-external-platform-4.5-natives-windows-64.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\4c517eca808522457dd95ee8fc1fbcdbb602efbe\lwjgl-platform-2.9.1-natives-windows.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\aa9aae879af8eb378e22cfc64db56ec2ca9a44d1\lwjgl-platform-2.9.1-natives-linux.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac\lwjgl-platform-2.9.1-natives-osx.jar, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Ravenne\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\start, examining for mod candidates
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully
                                    [18:53:09] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer
                                    [18:53:09] [Client thread/INFO] [FML/]: Searching C:\Users\Ravenne\Documents\PlasmaniaFactionMod\eclipse\mods for mods
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin
                                    [18:53:09] [Client thread/TRACE] [FML/]: Recursing into package assets
                                    [18:53:09] [Client thread/TRACE] [FML/]: Recursing into package assets.pfm
                                    [18:53:09] [Client thread/TRACE] [FML/]: Recursing into package assets.pfm.lang
                                    [18:53:09] [Client thread/TRACE] [FML/]: Recursing into package assets.pfm.textures
                                    [18:53:09] [Client thread/TRACE] [FML/]: Recursing into package assets.pfm.textures.blocks
                                    [18:53:09] [Client thread/TRACE] [FML/]: Recursing into package assets.pfm.textures.items
                                    [18:53:09] [Client thread/TRACE] [FML/]: Recursing into package com
                                    [18:53:09] [Client thread/TRACE] [FML/]: Recursing into package com.ravriel
                                    [18:53:09] [Client thread/TRACE] [FML/]: Recursing into package com.ravriel.pfm
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Identified a mod of type Lcpw/mods/fml/common/Mod; (com.ravriel.pfm.pfm) - loading
                                    [18:53:09] [Client thread/TRACE] [pfm/]: Parsed dependency info : [] [] []
                                    [18:53:09] [Client thread/TRACE] [FML/]: Recursing into package com.ravriel.pfm.proxy
                                    [18:53:09] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar for potential mods
                                    [18:53:09] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar appears to be missing an mcmod.info file
                                    [18:53:10] [Client thread/DEBUG] [FML/]: Examining file launchwrapper-1.12.jar for potential mods
                                    [18:53:10] [Client thread/DEBUG] [FML/]: The mod container launchwrapper-1.12.jar appears to be missing an mcmod.info file
                                    [18:53:10] [Client thread/DEBUG] [FML/]: Examining file jsr305-1.3.9.jar for potential mods
                                    [18:53:10] [Client thread/DEBUG] [FML/]: The mod container jsr305-1.3.9.jar appears to be missing an mcmod.info file
                                    [18:53:10] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods
                                    [18:53:10] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file
                                    [18:53:10] [Client thread/DEBUG] [FML/]: Examining file akka-actor_2.11-2.3.3.jar for potential mods
                                    [18:53:10] [Client thread/DEBUG] [FML/]: The mod container akka-actor_2.11-2.3.3.jar appears to be missing an mcmod.info file
                                    [18:53:10] [Client thread/DEBUG] [FML/]: Examining file config-1.2.1.jar for potential mods
                                    [18:53:10] [Client thread/DEBUG] [FML/]: The mod container config-1.2.1.jar appears to be missing an mcmod.info file
                                    [18:53:10] [Client thread/DEBUG] [FML/]: Examining file scala-actors-migration_2.11-1.1.0.jar for potential mods
                                    [18:53:10] [Client thread/DEBUG] [FML/]: The mod container scala-actors-migration_2.11-1.1.0.jar appears to be missing an mcmod.info file
                                    [18:53:10] [Client thread/DEBUG] [FML/]: Examining file scala-compiler-2.11.1.jar for potential mods
                                    [18:53:10] [Client thread/DEBUG] [FML/]: The mod container scala-compiler-2.11.1.jar appears to be missing an mcmod.info file
                                    [18:53:13] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-library_2.11-1.0.2.jar for potential mods
                                    [18:53:13] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-library_2.11-1.0.2.jar appears to be missing an mcmod.info file
                                    [18:53:13] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-plugin_2.11.1-1.0.2.jar for potential mods
                                    [18:53:13] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-plugin_2.11.1-1.0.2.jar appears to be missing an mcmod.info file
                                    [18:53:13] [Client thread/DEBUG] [FML/]: Examining file scala-library-2.11.1.jar for potential mods
                                    [18:53:13] [Client thread/DEBUG] [FML/]: The mod container scala-library-2.11.1.jar appears to be missing an mcmod.info file
                                    [18:53:13] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods
                                    [18:53:13] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file
                                    [18:53:13] [Client thread/DEBUG] [FML/]: Examining file scala-reflect-2.11.1.jar for potential mods
                                    [18:53:13] [Client thread/DEBUG] [FML/]: The mod container scala-reflect-2.11.1.jar appears to be missing an mcmod.info file
                                    [18:53:14] [Client thread/DEBUG] [FML/]: Examining file scala-swing_2.11-1.0.1.jar for potential mods
                                    [18:53:14] [Client thread/DEBUG] [FML/]: The mod container scala-swing_2.11-1.0.1.jar appears to be missing an mcmod.info file
                                    [18:53:14] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods
                                    [18:53:14] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file
                                    [18:53:14] [Client thread/DEBUG] [FML/]: Examining file jopt-simple-4.5.jar for potential mods
                                    [18:53:14] [Client thread/DEBUG] [FML/]: The mod container jopt-simple-4.5.jar appears to be missing an mcmod.info file
                                    [18:53:14] [Client thread/DEBUG] [FML/]: Examining file lzma-0.0.1.jar for potential mods
                                    [18:53:14] [Client thread/DEBUG] [FML/]: The mod container lzma-0.0.1.jar appears to be missing an mcmod.info file
                                    [18:53:14] [Client thread/DEBUG] [FML/]: Examining file realms-1.3.5.jar for potential mods
                                    [18:53:14] [Client thread/DEBUG] [FML/]: The mod container realms-1.3.5.jar appears to be missing an mcmod.info file
                                    [18:53:14] [Client thread/DEBUG] [FML/]: Examining file commons-compress-1.8.1.jar for potential mods
                                    [18:53:14] [Client thread/DEBUG] [FML/]: The mod container commons-compress-1.8.1.jar appears to be missing an mcmod.info file
                                    [18:53:14] [Client thread/DEBUG] [FML/]: Examining file httpclient-4.3.3.jar for potential mods
                                    [18:53:14] [Client thread/DEBUG] [FML/]: The mod container httpclient-4.3.3.jar appears to be missing an mcmod.info file
                                    [18:53:14] [Client thread/DEBUG] [FML/]: Examining file commons-logging-1.1.3.jar for potential mods
                                    [18:53:14] [Client thread/DEBUG] [FML/]: The mod container commons-logging-1.1.3.jar appears to be missing an mcmod.info file
                                    [18:53:14] [Client thread/DEBUG] [FML/]: Examining file httpcore-4.3.2.jar for potential mods
                                    [18:53:14] [Client thread/DEBUG] [FML/]: The mod container httpcore-4.3.2.jar appears to be missing an mcmod.info file
                                    [18:53:14] [Client thread/DEBUG] [FML/]: Examining file vecmath-1.3.1.jar for potential mods
                                    [18:53:14] [Client thread/DEBUG] [FML/]: The mod container vecmath-1.3.1.jar appears to be missing an mcmod.info file
                                    [18:53:14] [Client thread/DEBUG] [FML/]: Examining file trove4j-3.0.3.jar for potential mods
                                    [18:53:14] [Client thread/DEBUG] [FML/]: The mod container trove4j-3.0.3.jar appears to be missing an mcmod.info file
                                    [18:53:15] [Client thread/DEBUG] [FML/]: Examining file icu4j-core-mojang-51.2.jar for potential mods
                                    [18:53:15] [Client thread/DEBUG] [FML/]: The mod container icu4j-core-mojang-51.2.jar appears to be missing an mcmod.info file
                                    [18:53:15] [Client thread/DEBUG] [FML/]: Examining file codecjorbis-20101023.jar for potential mods
                                    [18:53:15] [Client thread/DEBUG] [FML/]: The mod container codecjorbis-20101023.jar appears to be missing an mcmod.info file
                                    [18:53:15] [Client thread/DEBUG] [FML/]: Examining file codecwav-20101023.jar for potential mods
                                    [18:53:15] [Client thread/DEBUG] [FML/]: The mod container codecwav-20101023.jar appears to be missing an mcmod.info file
                                    [18:53:15] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods
                                    [18:53:15] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file
                                    [18:53:15] [Client thread/DEBUG] [FML/]: Examining file librarylwjglopenal-20100824.jar for potential mods
                                    [18:53:15] [Client thread/DEBUG] [FML/]: The mod container librarylwjglopenal-20100824.jar appears to be missing an mcmod.info file
                                    [18:53:15] [Client thread/DEBUG] [FML/]: Examining file soundsystem-20120107.jar for potential mods
                                    [18:53:15] [Client thread/DEBUG] [FML/]: The mod container soundsystem-20120107.jar appears to be missing an mcmod.info file
                                    [18:53:15] [Client thread/DEBUG] [FML/]: Examining file netty-all-4.0.10.Final.jar for potential mods
                                    [18:53:15] [Client thread/DEBUG] [FML/]: The mod container netty-all-4.0.10.Final.jar appears to be missing an mcmod.info file
                                    [18:53:15] [Client thread/DEBUG] [FML/]: Examining file guava-17.0.jar for potential mods
                                    [18:53:15] [Client thread/DEBUG] [FML/]: The mod container guava-17.0.jar appears to be missing an mcmod.info file
                                    [18:53:15] [Client thread/DEBUG] [FML/]: Examining file commons-lang3-3.3.2.jar for potential mods
                                    [18:53:15] [Client thread/DEBUG] [FML/]: The mod container commons-lang3-3.3.2.jar appears to be missing an mcmod.info file
                                    [18:53:16] [Client thread/DEBUG] [FML/]: Examining file commons-io-2.4.jar for potential mods
                                    [18:53:16] [Client thread/DEBUG] [FML/]: The mod container commons-io-2.4.jar appears to be missing an mcmod.info file
                                    [18:53:16] [Client thread/DEBUG] [FML/]: Examining file commons-codec-1.9.jar for potential mods
                                    [18:53:16] [Client thread/DEBUG] [FML/]: The mod container commons-codec-1.9.jar appears to be missing an mcmod.info file
                                    [18:53:16] [Client thread/DEBUG] [FML/]: Examining file jinput-2.0.5.jar for potential mods
                                    [18:53:16] [Client thread/DEBUG] [FML/]: The mod container jinput-2.0.5.jar appears to be missing an mcmod.info file
                                    [18:53:16] [Client thread/DEBUG] [FML/]: Examining file jutils-1.0.0.jar for potential mods
                                    [18:53:16] [Client thread/DEBUG] [FML/]: The mod container jutils-1.0.0.jar appears to be missing an mcmod.info file
                                    [18:53:16] [Client thread/DEBUG] [FML/]: Examining file gson-2.2.4.jar for potential mods
                                    [18:53:16] [Client thread/DEBUG] [FML/]: The mod container gson-2.2.4.jar appears to be missing an mcmod.info file
                                    [18:53:16] [Client thread/DEBUG] [FML/]: Examining file authlib-1.5.16.jar for potential mods
                                    [18:53:16] [Client thread/DEBUG] [FML/]: The mod container authlib-1.5.16.jar appears to be missing an mcmod.info file
                                    [18:53:16] [Client thread/DEBUG] [FML/]: Examining file log4j-api-2.0-beta9.jar for potential mods
                                    [18:53:16] [Client thread/DEBUG] [FML/]: The mod container log4j-api-2.0-beta9.jar appears to be missing an mcmod.info file
                                    [18:53:16] [Client thread/DEBUG] [FML/]: Examining file log4j-core-2.0-beta9.jar for potential mods
                                    [18:53:16] [Client thread/DEBUG] [FML/]: The mod container log4j-core-2.0-beta9.jar appears to be missing an mcmod.info file
                                    [18:53:16] [Client thread/DEBUG] [FML/]: Examining file lwjgl-2.9.1.jar for potential mods
                                    [18:53:16] [Client thread/DEBUG] [FML/]: The mod container lwjgl-2.9.1.jar appears to be missing an mcmod.info file
                                    [18:53:16] [Client thread/DEBUG] [FML/]: Examining file lwjgl_util-2.9.1.jar for potential mods
                                    [18:53:16] [Client thread/DEBUG] [FML/]: The mod container lwjgl_util-2.9.1.jar appears to be missing an mcmod.info file
                                    [18:53:16] [Client thread/DEBUG] [FML/]: Examining file twitch-5.16.jar for potential mods
                                    [18:53:16] [Client thread/DEBUG] [FML/]: The mod container twitch-5.16.jar appears to be missing an mcmod.info file
                                    [18:53:16] [Client thread/DEBUG] [FML/]: Examining file scala-actors-2.11.0.jar for potential mods
                                    [18:53:16] [Client thread/DEBUG] [FML/]: The mod container scala-actors-2.11.0.jar appears to be missing an mcmod.info file
                                    [18:53:16] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods
                                    [18:53:16] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file
                                    [18:53:16] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods
                                    
                                    
                                    1 réponse Dernière réponse Répondre Citer 0
                                    • Ravriel
                                      Ravriel dernière édition par

                                      [18:53:16] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-linux.jar for potential mods
                                      [18:53:16] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-linux.jar appears to be missing an mcmod.info file
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-windows.jar for potential mods
                                      [18:53:16] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-windows.jar appears to be missing an mcmod.info file
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-osx.jar for potential mods
                                      [18:53:16] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-osx.jar appears to be missing an mcmod.info file
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-32.jar for potential mods
                                      [18:53:16] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-32.jar appears to be missing an mcmod.info file
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-64.jar for potential mods
                                      [18:53:16] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-64.jar appears to be missing an mcmod.info file
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-osx.jar for potential mods
                                      [18:53:16] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-osx.jar appears to be missing an mcmod.info file
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-32.jar for potential mods
                                      [18:53:16] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-32.jar appears to be missing an mcmod.info file
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-64.jar for potential mods
                                      [18:53:16] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-64.jar appears to be missing an mcmod.info file
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-windows.jar for potential mods
                                      [18:53:16] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-windows.jar appears to be missing an mcmod.info file
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-linux.jar for potential mods
                                      [18:53:16] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-linux.jar appears to be missing an mcmod.info file
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-osx.jar for potential mods
                                      [18:53:16] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-osx.jar appears to be missing an mcmod.info file
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods
                                      [18:53:16] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start
                                      [18:53:16] [Client thread/TRACE] [FML/]: Recursing into package net
                                      [18:53:16] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge
                                      [18:53:16] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle
                                      [18:53:16] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers
                                      [18:53:16] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load
                                      [18:53:16] [Client thread/TRACE] [FML/]: Received a system property request ''
                                      [18:53:16] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods
                                      [18:53:16] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar [en_US, af_ZA, ar_SA, br_FR, ca_ES, cs_CZ, da_DK, de_DE, el_GR, en_US, es_ES, fa_IR, fi_FI, fr_FR, he_IL, hu_HU, it_IT, ja_JP, ko_KR, lt_LT, nb_NO, nl_NL, nn_NO, no_NO, pl_PL, pt_BR, pt_PT, ro_RO, ru_RU, sl_SI, sr_SP, sv_SE, tr_TR, uk_UA, vi_VN, zh_CN, zh_TW, en_US]
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar [en_US, af_ZA, ar_SA, br_FR, ca_ES, cs_CZ, da_DK, de_DE, el_GR, en_US, es_ES, fa_IR, fi_FI, fr_FR, he_IL, hu_HU, it_IT, ja_JP, ko_KR, lt_LT, nb_NO, nl_NL, nn_NO, no_NO, pl_PL, pt_BR, pt_PT, ro_RO, ru_RU, sl_SI, sr_SP, sv_SE, tr_TR, uk_UA, vi_VN, zh_CN, zh_TW, en_US]
                                      [18:53:16] [Client thread/DEBUG] [pfm/]: Enabling mod pfm
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Injecting found translation assets for lang en_US at assets/pfm/lang/en_US.lang into language system
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Injecting found translation assets for lang fr_FR at assets/pfm/lang/fr_FR.lang into language system
                                      [18:53:16] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied
                                      [18:53:16] [Client thread/TRACE] [FML/]: All mod requirements are satisfied
                                      [18:53:16] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list
                                      [18:53:16] [Client thread/TRACE] [FML/]: Mod sorting completed successfully
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Mod sorting data
                                      [18:53:16] [Client thread/DEBUG] [FML/]: 	pfm(Plasmania Faction Mod:0.1): bin ()
                                      [18:53:16] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp
                                      [18:53:16] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0,011s
                                      [18:53:16] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML
                                      [18:53:16] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists
                                      [18:53:16] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection
                                      [18:53:16] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (7.10.99.99)
                                      [18:53:16] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, pfm] at CLIENT
                                      [18:53:16] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, pfm] at SERVER
                                      [18:53:16] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML
                                      [18:53:16] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 0,282s
                                      [18:53:16] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge
                                      [18:53:16] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed
                                      [18:53:16] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection
                                      [18:53:16] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (10.13.4.1558)
                                      [18:53:17] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0,008s
                                      [18:53:17] [Client thread/TRACE] [pfm/pfm]: Sending event FMLConstructionEvent to mod pfm
                                      [18:53:17] [Client thread/TRACE] [FML/pfm]: Mod pfm is using network checker : Accepting version 0.1
                                      [18:53:17] [Client thread/TRACE] [FML/pfm]: Testing mod pfm to verify it accepts its own version in a remote connection
                                      [18:53:17] [Client thread/TRACE] [FML/pfm]: The mod pfm accepts its own version (0.1)
                                      [18:53:17] [Client thread/DEBUG] [FML/pfm]: Attempting to inject @SidedProxy classes into pfm
                                      [18:53:17] [Client thread/TRACE] [pfm/pfm]: Sent event FMLConstructionEvent to mod pfm
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Plasmania Faction Mod took 0,013s
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 0,315s
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Mod signature data
                                      [18:53:17] [Client thread/DEBUG] [FML/]:  	Valid Signatures:
                                      [18:53:17] [Client thread/DEBUG] [FML/]:  	Missing Signatures:
                                      [18:53:17] [Client thread/DEBUG] [FML/]: 		mcp	(Minecraft Coder Pack	9.05)	minecraft.jar
                                      [18:53:17] [Client thread/DEBUG] [FML/]: 		FML	(Forge Mod Loader	7.10.99.99)	forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar
                                      [18:53:17] [Client thread/DEBUG] [FML/]: 		Forge	(Minecraft Forge	10.13.4.1558)	forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar
                                      [18:53:17] [Client thread/DEBUG] [FML/]: 		pfm	(Plasmania Faction Mod	0.1)	bin
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0,004s
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0,007s
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0,006s
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Plasmania Faction Mod took 0,003s
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0,026s
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0,026s
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0,045s
                                      [18:53:17] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
                                      [18:53:17] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
                                      [18:53:17] [Client thread/DEBUG] [Plasmania Faction Mod/]: Mod Plasmania Faction Mod is missing a pack.mcmeta file, substituting a dummy one
                                      [18:53:17] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations
                                      [18:53:17] [Client thread/INFO] [FML/]: Found 341 ObjectHolder annotations
                                      [18:53:17] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations
                                      [18:53:17] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations
                                      [18:53:17] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp
                                      [18:53:17] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0,001s
                                      [18:53:17] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML
                                      [18:53:17] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0,000s
                                      [18:53:17] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge
                                      [18:53:17] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0
                                      [18:53:17] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0,025s
                                      [18:53:17] [Client thread/TRACE] [pfm/pfm]: Sending event FMLPreInitializationEvent to mod pfm
                                      [18:53:17] [Client thread/TRACE] [pfm/pfm]: Sent event FMLPreInitializationEvent to mod pfm
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Plasmania Faction Mod took 0,013s
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 0,039s
                                      [18:53:17] [Client thread/INFO] [FML/]: Applying holder lookups
                                      [18:53:17] [Client thread/INFO] [FML/]: Holder lookups applied
                                      [18:53:17] [Client thread/INFO] [FML/]: Injecting itemstacks
                                      [18:53:17] [Client thread/INFO] [FML/]: Itemstack injection complete
                                      [18:53:17] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0,000s
                                      [18:53:17] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                      [18:53:17] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
                                      [18:53:17] [Thread-8/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
                                      [18:53:17] [Thread-8/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
                                      [18:53:17] [Thread-8/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
                                      [18:53:17] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 1,185s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0,004s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0,002s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0,009s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0,009s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Render Manager took 0,132s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0,000s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0,022s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading GL properties took 0,001s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Render Global instance took 0,064s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Building Blocks Texture took 0,012s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Anisotropy and Mipmaps took 0,000s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0,001s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,003s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Blocks Texture took 0,009s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0,000s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,001s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Items Texture took 0,004s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Viewport took 0,002s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 0,246s
                                      [18:53:18] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp
                                      [18:53:18] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0,000s
                                      [18:53:18] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML
                                      [18:53:18] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0,000s
                                      [18:53:18] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge
                                      [18:53:18] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0,000s
                                      [18:53:18] [Client thread/TRACE] [pfm/pfm]: Sending event FMLInitializationEvent to mod pfm
                                      [18:53:18] [Client thread/TRACE] [pfm/pfm]: Sent event FMLInitializationEvent to mod pfm
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Plasmania Faction Mod took 0,000s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0,001s
                                      [18:53:18] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp
                                      [18:53:18] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp
                                      [18:53:18] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0,003s
                                      [18:53:18] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML
                                      [18:53:18] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML
                                      [18:53:18] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0,000s
                                      [18:53:18] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge
                                      [18:53:18] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge
                                      [18:53:18] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0,000s
                                      [18:53:18] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod pfm
                                      [18:53:18] [Client thread/TRACE] [pfm/pfm]: Sending event IMCEvent to mod pfm
                                      [18:53:18] [Client thread/TRACE] [pfm/pfm]: Sent event IMCEvent to mod pfm
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Plasmania Faction Mod took 0,000s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0,004s
                                      [18:53:18] [Client thread/INFO] [FML/]: Injecting itemstacks
                                      [18:53:18] [Client thread/INFO] [FML/]: Itemstack injection complete
                                      [18:53:18] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp
                                      [18:53:18] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0,000s
                                      [18:53:18] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML
                                      [18:53:18] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0,000s
                                      [18:53:18] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge
                                      [18:53:18] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0,082s
                                      [18:53:18] [Client thread/TRACE] [pfm/pfm]: Sending event FMLPostInitializationEvent to mod pfm
                                      [18:53:18] [Client thread/TRACE] [pfm/pfm]: Sent event FMLPostInitializationEvent to mod pfm
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Plasmania Faction Mod took 0,000s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0,083s
                                      [18:53:18] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp
                                      [18:53:18] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0,000s
                                      [18:53:18] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML
                                      [18:53:18] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0,000s
                                      [18:53:18] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge
                                      [18:53:18] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking:
                                      [18:53:18] [Client thread/DEBUG] [FML/Forge]:   11: RecipeEntry("Before", UNKNOWN, )
                                      [18:53:18] [Client thread/DEBUG] [FML/Forge]:   10: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless
                                      [18:53:18] [Client thread/DEBUG] [FML/Forge]:   9: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped
                                      [18:53:18] [Client thread/DEBUG] [FML/Forge]:   8: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped
                                      [18:53:18] [Client thread/DEBUG] [FML/Forge]:   7: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped
                                      [18:53:18] [Client thread/DEBUG] [FML/Forge]:   6: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless
                                      [18:53:18] [Client thread/DEBUG] [FML/Forge]:   5: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless
                                      [18:53:18] [Client thread/DEBUG] [FML/Forge]:   4: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless
                                      [18:53:18] [Client thread/DEBUG] [FML/Forge]:   3: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless
                                      [18:53:18] [Client thread/DEBUG] [FML/Forge]:   2: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless
                                      [18:53:18] [Client thread/DEBUG] [FML/Forge]:   1: RecipeEntry("After", UNKNOWN, )
                                      [18:53:18] [Client thread/DEBUG] [FML/Forge]: Sorting recipies
                                      [18:53:18] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0,007s
                                      [18:53:18] [Client thread/TRACE] [pfm/pfm]: Sending event FMLLoadCompleteEvent to mod pfm
                                      [18:53:18] [Client thread/TRACE] [pfm/pfm]: Sent event FMLLoadCompleteEvent to mod pfm
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Plasmania Faction Mod took 0,000s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0,008s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Freezing block and item id maps
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Registry consistency check successful
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Registry consistency check successful
                                      [18:53:18] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0,001s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0,005s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0,005s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Plasmania Faction Mod took 0,001s
                                      [18:53:18] [Client thread/DEBUG] [FML/]: Bar Finished: Texture Loading took 0,123s
                                      [18:53:19] [Client thread/DEBUG] [FML/]: Bar Finished: Mipmap generation took 0,145s
                                      [18:53:19] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0,030s
                                      [18:53:19] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,138s
                                      [18:53:19] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0,407s
                                      [18:53:19] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0,004s
                                      [18:53:19] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0,000s
                                      [18:53:19] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0,003s
                                      [18:53:19] [Client thread/DEBUG] [FML/]: Bar Finished: Texture Loading took 0,061s
                                      [18:53:19] [Client thread/DEBUG] [FML/]: Bar Finished: Mipmap generation took 0,007s
                                      [18:53:19] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0,009s
                                      [18:53:19] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,020s
                                      [18:53:19] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/items.png took 0,089s
                                      [18:53:19] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0,504s
                                      [18:53:19] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                      [18:53:19] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
                                      [18:53:19] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:     Author: Paul Lamb, www.paulscode.com
                                      [18:53:19] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                      [18:53:19] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                      [18:53:19] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
                                      [18:53:19] [Thread-10/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
                                      [18:53:19] [Thread-10/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
                                      [18:53:19] [Thread-10/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
                                      [18:53:20] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                      [18:53:20] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 1,914s
                                      [18:53:20] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 1,914s
                                      [18:53:20] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 1,926s
                                      [18:53:20] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
                                      [18:53:20] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
                                      [18:53:20] [Client thread/DEBUG] [Plasmania Faction Mod/]: Mod Plasmania Faction Mod is missing a pack.mcmeta file, substituting a dummy one
                                      [18:53:20] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 11,236s
                                      [18:53:20] [Client thread/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
                                      [18:53:20] [Client thread/ERROR] [TEXTURE ERRORS/]: The following texture errors were found.
                                      [18:53:20] [Client thread/ERROR] [TEXTURE ERRORS/]: ==================================================
                                      [18:53:20] [Client thread/ERROR] [TEXTURE ERRORS/]:   DOMAIN pfm
                                      [18:53:20] [Client thread/ERROR] [TEXTURE ERRORS/]: --------------------------------------------------
                                      [18:53:20] [Client thread/ERROR] [TEXTURE ERRORS/]:   domain pfm is missing 1 texture
                                      [18:53:20] [Client thread/ERROR] [TEXTURE ERRORS/]:     domain pfm has 1 location:
                                      [18:53:20] [Client thread/ERROR] [TEXTURE ERRORS/]:       mod pfm resources at C:\Users\Ravenne\Documents\PlasmaniaFactionMod\bin
                                      [18:53:20] [Client thread/ERROR] [TEXTURE ERRORS/]: -------------------------
                                      [18:53:20] [Client thread/ERROR] [TEXTURE ERRORS/]:     The missing resources for domain pfm are:
                                      [18:53:20] [Client thread/ERROR] [TEXTURE ERRORS/]:       textures/blocks/cerynium_ore.png
                                      [18:53:20] [Client thread/ERROR] [TEXTURE ERRORS/]: -------------------------
                                      [18:53:20] [Client thread/ERROR] [TEXTURE ERRORS/]:     No other errors exist for domain pfm
                                      [18:53:20] [Client thread/ERROR] [TEXTURE ERRORS/]: ==================================================
                                      [18:53:20] [Client thread/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
                                      [18:53:23] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp
                                      [18:53:23] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Coder Pack took 0,017s
                                      [18:53:23] [Server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML
                                      [18:53:23] [Server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Forge Mod Loader took 0,000s
                                      [18:53:23] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge
                                      [18:53:23] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Forge took 0,000s
                                      [18:53:23] [Server thread/TRACE] [pfm/pfm]: Sending event FMLServerAboutToStartEvent to mod pfm
                                      [18:53:23] [Server thread/TRACE] [pfm/pfm]: Sent event FMLServerAboutToStartEvent to mod pfm
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Plasmania Faction Mod took 0,000s
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Bar Finished: ServerAboutToStart took 0,018s
                                      [18:53:23] [Server thread/INFO] [FML/]: Injecting existing block and item data into this server instance
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Registry consistency check successful
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Fixed item id mismatch pfm:uranium_ingot: 4100 (init) -> 4101 (map).
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Fixed item id mismatch pfm:oridium_nugget: 4098 (init) -> 4099 (map).
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Fixed item id mismatch pfm:pyrium_ingot: 4101 (init) -> 4103 (map).
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Fixed item id mismatch pfm:oridium_ingot: 4099 (init) -> 4100 (map).
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Fixed item id mismatch pfm:plasma_ingot: 4097 (init) -> 4098 (map).
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Registry consistency check successful
                                      [18:53:23] [Server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
                                      [18:53:23] [Server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0,000s
                                      [18:53:23] [Server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
                                      [18:53:23] [Server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0,000s
                                      [18:53:23] [Server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
                                      [18:53:23] [Server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0,001s
                                      [18:53:23] [Server thread/TRACE] [pfm/pfm]: Sending event FMLModIdMappingEvent to mod pfm
                                      [18:53:23] [Server thread/TRACE] [pfm/pfm]: Sent event FMLModIdMappingEvent to mod pfm
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Plasmania Faction Mod took 0,000s
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0,002s
                                      [18:53:23] [Server thread/INFO] [FML/]: Applying holder lookups
                                      [18:53:23] [Server thread/INFO] [FML/]: Holder lookups applied
                                      [18:53:23] [Server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world
                                      [18:53:23] [Server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
                                      [18:53:23] [Server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
                                      [18:53:23] [Server thread/INFO] [FML/]: Loading dimension 0 (Test World) (net.minecraft.server.integrated.IntegratedServer@1d06fd7)
                                      [18:53:23] [Server thread/INFO] [FML/]: Loading dimension 1 (Test World) (net.minecraft.server.integrated.IntegratedServer@1d06fd7)
                                      [18:53:23] [Server thread/INFO] [FML/]: Loading dimension -1 (Test World) (net.minecraft.server.integrated.IntegratedServer@1d06fd7)
                                      [18:53:24] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp
                                      [18:53:24] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp
                                      [18:53:24] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Coder Pack took 0,592s
                                      [18:53:24] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML
                                      [18:53:24] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML
                                      [18:53:24] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Forge Mod Loader took 0,000s
                                      [18:53:24] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge
                                      [18:53:24] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge
                                      [18:53:24] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Forge took 0,002s
                                      [18:53:24] [Server thread/TRACE] [pfm/pfm]: Sending event FMLServerStartingEvent to mod pfm
                                      [18:53:24] [Server thread/TRACE] [pfm/pfm]: Sent event FMLServerStartingEvent to mod pfm
                                      [18:53:24] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Plasmania Faction Mod took 0,000s
                                      [18:53:24] [Server thread/DEBUG] [FML/]: Bar Finished: ServerStarting took 0,595s
                                      [18:53:24] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp
                                      [18:53:24] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp
                                      [18:53:24] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Coder Pack took 0,000s
                                      [18:53:24] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML
                                      [18:53:24] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML
                                      [18:53:24] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Forge Mod Loader took 0,000s
                                      [18:53:24] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge
                                      [18:53:24] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge
                                      [18:53:24] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Forge took 0,000s
                                      [18:53:24] [Server thread/TRACE] [pfm/pfm]: Sending event FMLServerStartedEvent to mod pfm
                                      [18:53:24] [Server thread/TRACE] [pfm/pfm]: Sent event FMLServerStartedEvent to mod pfm
                                      [18:53:24] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Plasmania Faction Mod took 0,000s
                                      [18:53:24] [Server thread/DEBUG] [FML/]: Bar Finished: ServerStarted took 0,001s
                                      [18:53:25] [Netty Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0
                                      [18:53:25] [Netty Client IO #0/TRACE] [FML/]: $ServerHello->FMLHandshakeClientState$2:HELLO
                                      [18:53:25] [Netty Client IO #0/INFO] [FML/]: Server protocol version 2
                                      [18:53:25] [Netty Client IO #0/DEBUG] [FML/]: Received override dimension 0
                                      [18:53:25] [Netty IO #1/TRACE] [FML/]: $ClientHello->FMLHandshakeServerState$2:HELLO
                                      [18:53:25] [Netty IO #1/INFO] [FML/]: Client protocol version 2
                                      [18:53:25] [Netty IO #1/TRACE] [FML/]: $ModList:4 mods->FMLHandshakeServerState$2:HELLO
                                      [18:53:25] [Netty IO #1/INFO] [FML/]: Client attempting to join with 4 mods : FML@7.10.99.99,pfm@0.1,Forge@10.13.4.1558,mcp@9.05
                                      [18:53:25] [Netty IO #1/INFO] [FML/]: Attempting connection with missing mods [] at CLIENT
                                      [18:53:25] [Netty Client IO #0/TRACE] [FML/]: $ModList:4 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA
                                      [18:53:25] [Netty Client IO #0/INFO] [FML/]: Attempting connection with missing mods [] at SERVER
                                      [18:53:25] [Netty IO #1/TRACE] [FML/]: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK
                                      [18:53:25] [Netty Client IO #0/TRACE] [FML/]: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE
                                      [18:53:25] [Netty IO #1/TRACE] [FML/]: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE
                                      [18:53:25] [Netty Client IO #0/TRACE] [FML/]: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE
                                      [18:53:25] [Netty IO #1/TRACE] [FML/]: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE
                                      [18:53:25] [Server thread/INFO] [FML/]: [Server thread] Server side modded connection established
                                      [18:53:25] [Client thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
                                      [18:53:25] [Client thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
                                      [18:53:25] [Client thread/INFO] [FML/]: [Client thread] Client side modded connection established
                                      [18:53:25] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0
                                      [18:54:09] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Test World
                                      [18:54:54] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Test World
                                      [18:55:39] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Test World
                                      [18:56:24] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Test World
                                      [18:56:34] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Test World
                                      [18:56:35] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppingEvent to mod mcp
                                      [18:56:35] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppingEvent to mod mcp
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Coder Pack took 0,027s
                                      [18:56:35] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStoppingEvent to mod FML
                                      [18:56:35] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStoppingEvent to mod FML
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Forge Mod Loader took 0,001s
                                      [18:56:35] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppingEvent to mod Forge
                                      [18:56:35] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppingEvent to mod Forge
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Forge took 0,001s
                                      [18:56:35] [Server thread/TRACE] [pfm/pfm]: Sending event FMLServerStoppingEvent to mod pfm
                                      [18:56:35] [Server thread/TRACE] [pfm/pfm]: Sent event FMLServerStoppingEvent to mod pfm
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Plasmania Faction Mod took 0,001s
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Bar Finished: ServerStopping took 0,029s
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Test World
                                      [18:56:35] [Server thread/INFO] [FML/]: Unloading dimension 0
                                      [18:56:35] [Server thread/INFO] [FML/]: Unloading dimension -1
                                      [18:56:35] [Server thread/INFO] [FML/]: Unloading dimension 1
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Reverting to frozen data state.
                                      [18:56:35] [Server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
                                      [18:56:35] [Server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0,000s
                                      [18:56:35] [Server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
                                      [18:56:35] [Server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0,000s
                                      [18:56:35] [Server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
                                      [18:56:35] [Server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0,001s
                                      [18:56:35] [Server thread/TRACE] [pfm/pfm]: Sending event FMLModIdMappingEvent to mod pfm
                                      [18:56:35] [Server thread/TRACE] [pfm/pfm]: Sent event FMLModIdMappingEvent to mod pfm
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Plasmania Faction Mod took 0,001s
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0,003s
                                      [18:56:35] [Server thread/INFO] [FML/]: Applying holder lookups
                                      [18:56:35] [Server thread/INFO] [FML/]: Holder lookups applied
                                      [18:56:35] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppedEvent to mod mcp
                                      [18:56:35] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppedEvent to mod mcp
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Coder Pack took 0,000s
                                      [18:56:35] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStoppedEvent to mod FML
                                      [18:56:35] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStoppedEvent to mod FML
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Forge Mod Loader took 0,000s
                                      [18:56:35] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppedEvent to mod Forge
                                      [18:56:35] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppedEvent to mod Forge
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Forge took 0,000s
                                      [18:56:35] [Server thread/TRACE] [pfm/pfm]: Sending event FMLServerStoppedEvent to mod pfm
                                      [18:56:35] [Server thread/TRACE] [pfm/pfm]: Sent event FMLServerStoppedEvent to mod pfm
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Plasmania Faction Mod took 0,000s
                                      [18:56:35] [Server thread/DEBUG] [FML/]: Bar Finished: ServerStopped took 0,002s
                                      [18:56:36] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                      [18:56:36] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
                                      [18:56:36] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:     Author: Paul Lamb, www.paulscode.com
                                      [18:56:36] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                      [18:56:42] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
                                      [18:56:42] [main/INFO] [FML/]: Forge Mod Loader version 7.99.36.1558 for Minecraft 1.7.10 loading
                                      [18:56:42] [main/INFO] [FML/]: Java is Java HotSpot(TM) Client VM, version 1.8.0_171, running on Windows 10:x86:10.0, installed at C:\Program Files (x86)\Java\jre1.8.0_171
                                      [18:56:42] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\Ravenne\Documents\PlasmaniaFactionMod\bin;C:\Users\Ravenne\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\1.3.9\40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf\jsr305-1.3.9.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.0.3\f9e364ae2a66ce2a543012a4668856e84e5dab74\asm-debug-all-5.0.3.jar;C:\Users\Ravenne\.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;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\Ravenne\.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;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\Ravenne\.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;C:\Users\Ravenne\.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;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-xml_2.11\1.0.2\7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0\scala-xml_2.11-1.0.2.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.5\6065cc95c661255349c1d0756657be17c29a4fd3\jopt-simple-4.5.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.3.5\807ae355ee63583becd7ea60e76aab1532bb42e\realms-1.3.5.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.3.1\a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d\vecmath-1.3.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.10.Final\9e50bd52ffe257a0e2cd8d971688d6ce7d174325\netty-all-4.0.10.Final.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.16\ef1582b11fd0943d069cdcb72e99008ac209a283\authlib-1.5.16.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.1\f58c5aabcef0e41718a564be9f8e412fff8db847\lwjgl-2.9.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.1\290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e\lwjgl_util-2.9.1.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\5.16\1f55f009c61637c10c0acfb8b5ffc600f30044b4\twitch-5.16.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\Ravenne\.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;C:\Users\Ravenne\.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;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\7c6affe439099806a4f552da14c42f9d643d8b23\twitch-platform-5.16-natives-windows-32.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\39d0c3d363735b4785598e0e7fbf8297c706a9f9\twitch-platform-5.16-natives-windows-64.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\62503ee712766cf77f97252e5902786fd834b8c5\twitch-platform-5.16-natives-osx.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\18215140f010c05b9f86ef6f0f8871954d2ccebf\twitch-external-platform-4.5-natives-windows-32.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\c3cde57891b935d41b6680a9c5e1502eeab76d86\twitch-external-platform-4.5-natives-windows-64.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\4c517eca808522457dd95ee8fc1fbcdbb602efbe\lwjgl-platform-2.9.1-natives-windows.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\aa9aae879af8eb378e22cfc64db56ec2ca9a44d1\lwjgl-platform-2.9.1-natives-linux.jar;C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac\lwjgl-platform-2.9.1-natives-osx.jar;C:\Users\Ravenne\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\start
                                      [18:56:42] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files (x86)\Java\jre1.8.0_171\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:/Program Files (x86)/Java/jre1.8.0_171/bin/client;C:/Program Files (x86)/Java/jre1.8.0_171/bin;C:/Program Files (x86)/Java/jre1.8.0_171/lib/i386;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\Git\cmd;C:\Program Files\Java\jdk1.8.0_144\bin;;C:\WINDOWS\System32\OpenSSH\;C:\Users\Ravenne\AppData\Local\Microsoft\WindowsApps;;C:\Users\Ravenne\Desktop\Eclipse Oxygen;;.;C:/Users/Ravenne/.gradle/caches/minecraft/net/minecraft/minecraft_natives/1.7.10
                                      [18:56:42] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
                                      [18:56:42] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin
                                      [18:56:42] [main/DEBUG] [FML/]: Added access transformer class cpw.mods.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
                                      [18:56:42] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin
                                      [18:56:42] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin
                                      [18:56:42] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.transformers.ForgeAccessTransformer to enqueued access transformers
                                      [18:56:42] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin
                                      [18:56:42] [main/DEBUG] [FML/]: All fundamental core mods are successfully located
                                      [18:56:42] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\Ravenne\Documents\PlasmaniaFactionMod\eclipse\.
                                      [18:56:42] [main/DEBUG] [FML/]: Discovering coremods
                                      [18:56:42] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
                                      [18:56:42] [main/INFO] [GradleStart/]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin
                                      [18:56:42] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
                                      [18:56:42] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                      [18:56:42] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
                                      [18:56:42] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
                                      [18:56:42] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                      [18:56:42] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                      [18:56:42] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                                      [18:56:42] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin} class transformers
                                      [18:56:42] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.MarkerTransformer
                                      [18:56:42] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.SideTransformer
                                      [18:56:42] [main/TRACE] [FML/]: Registering transformer cpw.mods.fml.common.asm.transformers.EventSubscriptionTransformer
                                      [18:56:42] [main/DEBUG] [FML/]: Injection complete
                                      [18:56:42] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {cpw.mods.fml.relauncher.FMLCorePlugin}
                                      [18:56:42] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin
                                      [18:56:42] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
                                      [18:56:43] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing
                                      [18:56:43] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully
                                      [18:56:43] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                                      [18:56:43] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers
                                      [18:56:43] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.classloading.FluidIdTransformer
                                      [18:56:43] [main/DEBUG] [FML/]: Injection complete
                                      [18:56:43] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}
                                      [18:56:43] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin
                                      [18:56:43] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully
                                      [18:56:43] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
                                      [18:56:43] [main/DEBUG] [FML/]: Loaded 57 rules from AccessTransformer config file fml_at.cfg
                                      [18:56:43] [main/DEBUG] [FML/]: Loaded 89 rules from AccessTransformer config file forge_at.cfg
                                      [18:56:43] [main/DEBUG] [FML/]: Validating minecraft
                                      [18:56:44] [main/DEBUG] [FML/]: Minecraft validated, launching...
                                      [18:56:44] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
                                      [18:56:44] [main/INFO] [LaunchWrapper/]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
                                      [18:56:44] [main/INFO] [LaunchWrapper/]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
                                      [18:56:44] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}
                                      [18:56:45] [Client thread/INFO] [STDOUT/]: [tv.twitch.StandardCoreAPI:<init>:16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's.
                                      [18:56:45] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0,024s
                                      [18:56:45] [Client thread/INFO] [STDOUT/]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ----
                                      // This doesn't make any sense!
                                      
                                      Time: 10/11/18 18:56
                                      Description: Loading screen debug info
                                      
                                      This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR
                                      
                                      
                                      A detailed walkthrough of the error, its code path and all known details is as follows:
                                      ---------------------------------------------------------------------------------------
                                      
                                      -- System Details --
                                      Details:
                                      	Minecraft Version: 1.7.10
                                      	Operating System: Windows 10 (x86) version 10.0
                                      	Java Version: 1.8.0_171, Oracle Corporation
                                      	Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
                                      	Memory: 820517744 bytes (782 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)
                                      	JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
                                      	AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
                                      	IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
                                      	FML: 
                                      	GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.5.13399 Compatibility Profile Context 15.201.1151.1008' Renderer: 'AMD Radeon HD 5800 Series'
                                      [18:56:46] [Client thread/INFO] [MinecraftForge/]: Attempting early MinecraftForge initialization
                                      [18:56:46] [Client thread/INFO] [FML/]: MinecraftForge v10.13.4.1558 Initialized
                                      [18:56:46] [Client thread/INFO] [FML/]: Replaced 183 ore recipies
                                      [18:56:46] [Client thread/INFO] [MinecraftForge/]: Completed early MinecraftForge initialization
                                      [18:56:46] [Client thread/DEBUG] [FML/]: File C:\Users\Ravenne\Documents\PlasmaniaFactionMod\eclipse\config\injectedDependencies.json not found. No dependencies injected
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [cpw.mods.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Ravenne\Documents\PlasmaniaFactionMod\bin, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\1.3.9\40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf\jsr305-1.3.9.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.0.3\f9e364ae2a66ce2a543012a4668856e84e5dab74\asm-debug-all-5.0.3.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-xml_2.11\1.0.2\7a80ec00aec122fba7cd4e0d4cdd87ff7e4cb6d0\scala-xml_2.11-1.0.2.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.5\6065cc95c661255349c1d0756657be17c29a4fd3\jopt-simple-4.5.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.3.5\807ae355ee63583becd7ea60e76aab1532bb42e\realms-1.3.5.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.3.1\a0ae4f51da409fa0c20fa0ca59e6bbc9413ae71d\vecmath-1.3.1.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.10.Final\9e50bd52ffe257a0e2cd8d971688d6ce7d174325\netty-all-4.0.10.Final.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.16\ef1582b11fd0943d069cdcb72e99008ac209a283\authlib-1.5.16.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.1\f58c5aabcef0e41718a564be9f8e412fff8db847\lwjgl-2.9.1.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.1\290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e\lwjgl_util-2.9.1.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\5.16\1f55f009c61637c10c0acfb8b5ffc600f30044b4\twitch-5.16.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.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, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\7c6affe439099806a4f552da14c42f9d643d8b23\twitch-platform-5.16-natives-windows-32.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\39d0c3d363735b4785598e0e7fbf8297c706a9f9\twitch-platform-5.16-natives-windows-64.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\5.16\62503ee712766cf77f97252e5902786fd834b8c5\twitch-platform-5.16-natives-osx.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\18215140f010c05b9f86ef6f0f8871954d2ccebf\twitch-external-platform-4.5-natives-windows-32.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\c3cde57891b935d41b6680a9c5e1502eeab76d86\twitch-external-platform-4.5-natives-windows-64.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\4c517eca808522457dd95ee8fc1fbcdbb602efbe\lwjgl-platform-2.9.1-natives-windows.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\aa9aae879af8eb378e22cfc64db56ec2ca9a44d1\lwjgl-platform-2.9.1-natives-linux.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Ravenne\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac\lwjgl-platform-2.9.1-natives-osx.jar, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Ravenne\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\start, examining for mod candidates
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully
                                      [18:56:46] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer
                                      [18:56:46] [Client thread/INFO] [FML/]: Searching C:\Users\Ravenne\Documents\PlasmaniaFactionMod\eclipse\mods for mods
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin
                                      [18:56:46] [Client thread/TRACE] [FML/]: Recursing into package assets
                                      [18:56:46] [Client thread/TRACE] [FML/]: Recursing into package assets.pfm
                                      [18:56:46] [Client thread/TRACE] [FML/]: Recursing into package assets.pfm.lang
                                      [18:56:46] [Client thread/TRACE] [FML/]: Recursing into package assets.pfm.textures
                                      [18:56:46] [Client thread/TRACE] [FML/]: Recursing into package assets.pfm.textures.blocks
                                      [18:56:46] [Client thread/TRACE] [FML/]: Recursing into package assets.pfm.textures.items
                                      [18:56:46] [Client thread/TRACE] [FML/]: Recursing into package com
                                      [18:56:46] [Client thread/TRACE] [FML/]: Recursing into package com.ravriel
                                      [18:56:46] [Client thread/TRACE] [FML/]: Recursing into package com.ravriel.pfm
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Identified a mod of type Lcpw/mods/fml/common/Mod; (com.ravriel.pfm.pfm) - loading
                                      [18:56:46] [Client thread/TRACE] [pfm/]: Parsed dependency info : [] [] []
                                      [18:56:46] [Client thread/TRACE] [FML/]: Recursing into package com.ravriel.pfm.proxy
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar for potential mods
                                      [18:56:46] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar appears to be missing an mcmod.info file
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Examining file launchwrapper-1.12.jar for potential mods
                                      [18:56:46] [Client thread/DEBUG] [FML/]: The mod container launchwrapper-1.12.jar appears to be missing an mcmod.info file
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Examining file jsr305-1.3.9.jar for potential mods
                                      [18:56:46] [Client thread/DEBUG] [FML/]: The mod container jsr305-1.3.9.jar appears to be missing an mcmod.info file
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods
                                      [18:56:46] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file
                                      [18:56:46] [Client thread/DEBUG] [FML/]: Examining file akka-actor_2.11-2.3.3.jar for potential mods
                                      [18:56:46] [Client thread/DEBUG] [FML/]: The mod container akka-actor_2.11-2.3.3.jar appears to be missing an mcmod.info file
                                      [18:56:47] [Client thread/DEBUG] [FML/]: Examining file config-1.2.1.jar for potential mods
                                      [18:56:47] [Client thread/DEBUG] [FML/]: The mod container config-1.2.1.jar appears to be missing an mcmod.info file
                                      [18:56:47] [Client thread/DEBUG] [FML/]: Examining file scala-actors-migration_2.11-1.1.0.jar for potential mods
                                      [18:56:47] [Client thread/DEBUG] [FML/]: The mod container scala-actors-migration_2.11-1.1.0.jar appears to be missing an mcmod.info file
                                      [18:56:47] [Client thread/DEBUG] [FML/]: Examining file scala-compiler-2.11.1.jar for potential mods
                                      [18:56:47] [Client thread/DEBUG] [FML/]: The mod container scala-compiler-2.11.1.jar appears to be missing an mcmod.info file
                                      [18:56:49] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-library_2.11-1.0.2.jar for potential mods
                                      [18:56:49] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-library_2.11-1.0.2.jar appears to be missing an mcmod.info file
                                      [18:56:49] [Client thread/DEBUG] [FML/]: Examining file scala-continuations-plugin_2.11.1-1.0.2.jar for potential mods
                                      [18:56:49] [Client thread/DEBUG] [FML/]: The mod container scala-continuations-plugin_2.11.1-1.0.2.jar appears to be missing an mcmod.info file
                                      [18:56:49] [Client thread/DEBUG] [FML/]: Examining file scala-library-2.11.1.jar for potential mods
                                      [18:56:49] [Client thread/DEBUG] [FML/]: The mod container scala-library-2.11.1.jar appears to be missing an mcmod.info file
                                      [18:56:50] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods
                                      [18:56:50] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file
                                      [18:56:50] [Client thread/DEBUG] [FML/]: Examining file scala-reflect-2.11.1.jar for potential mods
                                      [18:56:50] [Client thread/DEBUG] [FML/]: The mod container scala-reflect-2.11.1.jar appears to be missing an mcmod.info file
                                      [18:56:51] [Client thread/DEBUG] [FML/]: Examining file scala-swing_2.11-1.0.1.jar for potential mods
                                      [18:56:51] [Client thread/DEBUG] [FML/]: The mod container scala-swing_2.11-1.0.1.jar appears to be missing an mcmod.info file
                                      [18:56:51] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods
                                      [18:56:51] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file
                                      [18:56:51] [Client thread/DEBUG] [FML/]: Examining file jopt-simple-4.5.jar for potential mods
                                      [18:56:51] [Client thread/DEBUG] [FML/]: The mod container jopt-simple-4.5.jar appears to be missing an mcmod.info file
                                      [18:56:51] [Client thread/DEBUG] [FML/]: Examining file lzma-0.0.1.jar for potential mods
                                      [18:56:51] [Client thread/DEBUG] [FML/]: The mod container lzma-0.0.1.jar appears to be missing an mcmod.info file
                                      [18:56:51] [Client thread/DEBUG] [FML/]: Examining file realms-1.3.5.jar for potential mods
                                      [18:56:51] [Client thread/DEBUG] [FML/]: The mod container realms-1.3.5.jar appears to be missing an mcmod.info file
                                      [18:56:51] [Client thread/DEBUG] [FML/]: Examining file commons-compress-1.8.1.jar for potential mods
                                      [18:56:51] [Client thread/DEBUG] [FML/]: The mod container commons-compress-1.8.1.jar appears to be missing an mcmod.info file
                                      [18:56:51] [Client thread/DEBUG] [FML/]: Examining file httpclient-4.3.3.jar for potential mods
                                      [18:56:51] [Client thread/DEBUG] [FML/]: The mod container httpclient-4.3.3.jar appears to be missing an mcmod.info file
                                      [18:56:51] [Client thread/DEBUG] [FML/]: Examining file commons-logging-1.1.3.jar for potential mods
                                      [18:56:51] [Client thread/DEBUG] [FML/]: The mod container commons-logging-1.1.3.jar appears to be missing an mcmod.info file
                                      [18:56:51] [Client thread/DEBUG] [FML/]: Examining file httpcore-4.3.2.jar for potential mods
                                      [18:56:51] [Client thread/DEBUG] [FML/]: The mod container httpcore-4.3.2.jar appears to be missing an mcmod.info file
                                      [18:56:51] [Client thread/DEBUG] [FML/]: Examining file vecmath-1.3.1.jar for potential mods
                                      [18:56:51] [Client thread/DEBUG] [FML/]: The mod container vecmath-1.3.1.jar appears to be missing an mcmod.info file
                                      [18:56:51] [Client thread/DEBUG] [FML/]: Examining file trove4j-3.0.3.jar for potential mods
                                      [18:56:51] [Client thread/DEBUG] [FML/]: The mod container trove4j-3.0.3.jar appears to be missing an mcmod.info file
                                      [18:56:51] [Client thread/DEBUG] [FML/]: Examining file icu4j-core-mojang-51.2.jar for potential mods
                                      [18:56:51] [Client thread/DEBUG] [FML/]: The mod container icu4j-core-mojang-51.2.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file codecjorbis-20101023.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container codecjorbis-20101023.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file codecwav-20101023.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container codecwav-20101023.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file librarylwjglopenal-20100824.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container librarylwjglopenal-20100824.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file soundsystem-20120107.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container soundsystem-20120107.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file netty-all-4.0.10.Final.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container netty-all-4.0.10.Final.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file guava-17.0.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container guava-17.0.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file commons-lang3-3.3.2.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container commons-lang3-3.3.2.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file commons-io-2.4.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container commons-io-2.4.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file commons-codec-1.9.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container commons-codec-1.9.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file jinput-2.0.5.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container jinput-2.0.5.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file jutils-1.0.0.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container jutils-1.0.0.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file gson-2.2.4.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container gson-2.2.4.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file authlib-1.5.16.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container authlib-1.5.16.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file log4j-api-2.0-beta9.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container log4j-api-2.0-beta9.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file log4j-core-2.0-beta9.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container log4j-core-2.0-beta9.jar appears to be missing an mcmod.info file
                                      [18:56:52] [Client thread/DEBUG] [FML/]: Examining file lwjgl-2.9.1.jar for potential mods
                                      [18:56:52] [Client thread/DEBUG] [FML/]: The mod container lwjgl-2.9.1.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining file lwjgl_util-2.9.1.jar for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: The mod container lwjgl_util-2.9.1.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining file twitch-5.16.jar for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: The mod container twitch-5.16.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining file scala-actors-2.11.0.jar for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: The mod container scala-actors-2.11.0.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining file scala-xml_2.11-1.0.2.jar for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: The mod container scala-xml_2.11-1.0.2.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining file scala-parser-combinators_2.11-1.0.1.jar for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: The mod container scala-parser-combinators_2.11-1.0.1.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-linux.jar for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-linux.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-windows.jar for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-windows.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining file jinput-platform-2.0.5-natives-osx.jar for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: The mod container jinput-platform-2.0.5-natives-osx.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-32.jar for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-32.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-windows-64.jar for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-windows-64.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining file twitch-platform-5.16-natives-osx.jar for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: The mod container twitch-platform-5.16-natives-osx.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-32.jar for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-32.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining file twitch-external-platform-4.5-natives-windows-64.jar for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: The mod container twitch-external-platform-4.5-natives-windows-64.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-windows.jar for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-windows.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-linux.jar for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-linux.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining file lwjgl-platform-2.9.1-natives-osx.jar for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: The mod container lwjgl-platform-2.9.1-natives-osx.jar appears to be missing an mcmod.info file
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start
                                      [18:56:53] [Client thread/TRACE] [FML/]: Recursing into package net
                                      [18:56:53] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge
                                      [18:56:53] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle
                                      [18:56:53] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers
                                      [18:56:53] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load
                                      [18:56:53] [Client thread/TRACE] [FML/]: Received a system property request ''
                                      [18:56:53] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar [en_US, af_ZA, ar_SA, br_FR, ca_ES, cs_CZ, da_DK, de_DE, el_GR, en_US, es_ES, fa_IR, fi_FI, fr_FR, he_IL, hu_HU, it_IT, ja_JP, ko_KR, lt_LT, nb_NO, nl_NL, nn_NO, no_NO, pl_PL, pt_BR, pt_PT, ro_RO, ru_RU, sl_SI, sr_SP, sv_SE, tr_TR, uk_UA, vi_VN, zh_CN, zh_TW, en_US]
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar [en_US, af_ZA, ar_SA, br_FR, ca_ES, cs_CZ, da_DK, de_DE, el_GR, en_US, es_ES, fa_IR, fi_FI, fr_FR, he_IL, hu_HU, it_IT, ja_JP, ko_KR, lt_LT, nb_NO, nl_NL, nn_NO, no_NO, pl_PL, pt_BR, pt_PT, ro_RO, ru_RU, sl_SI, sr_SP, sv_SE, tr_TR, uk_UA, vi_VN, zh_CN, zh_TW, en_US]
                                      [18:56:53] [Client thread/DEBUG] [pfm/]: Enabling mod pfm
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Injecting found translation assets for lang en_US at assets/pfm/lang/en_US.lang into language system
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Injecting found translation assets for lang fr_FR at assets/pfm/lang/fr_FR.lang into language system
                                      [18:56:53] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied
                                      [18:56:53] [Client thread/TRACE] [FML/]: All mod requirements are satisfied
                                      [18:56:53] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list
                                      [18:56:53] [Client thread/TRACE] [FML/]: Mod sorting completed successfully
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Mod sorting data
                                      [18:56:53] [Client thread/DEBUG] [FML/]: 	pfm(Plasmania Faction Mod:0.1): bin ()
                                      [18:56:53] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp
                                      [18:56:53] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0,002s
                                      [18:56:53] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML
                                      [18:56:53] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists
                                      [18:56:53] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection
                                      [18:56:53] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (7.10.99.99)
                                      [18:56:53] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, pfm] at CLIENT
                                      [18:56:53] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, pfm] at SERVER
                                      [18:56:53] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 0,279s
                                      [18:56:53] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge
                                      [18:56:53] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed
                                      [18:56:53] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection
                                      [18:56:53] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (10.13.4.1558)
                                      [18:56:53] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0,009s
                                      [18:56:53] [Client thread/TRACE] [pfm/pfm]: Sending event FMLConstructionEvent to mod pfm
                                      [18:56:53] [Client thread/TRACE] [FML/pfm]: Mod pfm is using network checker : Accepting version 0.1
                                      [18:56:53] [Client thread/TRACE] [FML/pfm]: Testing mod pfm to verify it accepts its own version in a remote connection
                                      [18:56:53] [Client thread/TRACE] [FML/pfm]: The mod pfm accepts its own version (0.1)
                                      [18:56:53] [Client thread/DEBUG] [FML/pfm]: Attempting to inject @SidedProxy classes into pfm
                                      [18:56:53] [Client thread/TRACE] [pfm/pfm]: Sent event FMLConstructionEvent to mod pfm
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Plasmania Faction Mod took 0,015s
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 0,304s
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Mod signature data
                                      [18:56:53] [Client thread/DEBUG] [FML/]:  	Valid Signatures:
                                      [18:56:53] [Client thread/DEBUG] [FML/]:  	Missing Signatures:
                                      [18:56:53] [Client thread/DEBUG] [FML/]: 		mcp	(Minecraft Coder Pack	9.05)	minecraft.jar
                                      [18:56:53] [Client thread/DEBUG] [FML/]: 		FML	(Forge Mod Loader	7.10.99.99)	forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar
                                      [18:56:53] [Client thread/DEBUG] [FML/]: 		Forge	(Minecraft Forge	10.13.4.1558)	forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar
                                      [18:56:53] [Client thread/DEBUG] [FML/]: 		pfm	(Plasmania Faction Mod	0.1)	bin
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0,004s
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0,006s
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0,006s
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Plasmania Faction Mod took 0,003s
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0,023s
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0,024s
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0,043s
                                      [18:56:53] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
                                      [18:56:53] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
                                      [18:56:53] [Client thread/DEBUG] [Plasmania Faction Mod/]: Mod Plasmania Faction Mod is missing a pack.mcmeta file, substituting a dummy one
                                      [18:56:53] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations
                                      [18:56:53] [Client thread/INFO] [FML/]: Found 341 ObjectHolder annotations
                                      [18:56:53] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations
                                      [18:56:53] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations
                                      [18:56:53] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp
                                      [18:56:53] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0,000s
                                      [18:56:53] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML
                                      [18:56:53] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0,001s
                                      [18:56:53] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge
                                      [18:56:53] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0
                                      [18:56:53] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0,042s
                                      [18:56:53] [Client thread/TRACE] [pfm/pfm]: Sending event FMLPreInitializationEvent to mod pfm
                                      [18:56:53] [Client thread/TRACE] [pfm/pfm]: Sent event FMLPreInitializationEvent to mod pfm
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Plasmania Faction Mod took 0,014s
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 0,056s
                                      [18:56:53] [Client thread/INFO] [FML/]: Applying holder lookups
                                      [18:56:53] [Client thread/INFO] [FML/]: Holder lookups applied
                                      [18:56:53] [Client thread/INFO] [FML/]: Injecting itemstacks
                                      [18:56:53] [Client thread/INFO] [FML/]: Itemstack injection complete
                                      [18:56:53] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0,000s
                                      [18:56:53] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                      [18:56:53] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
                                      [18:56:54] [Thread-8/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
                                      [18:56:54] [Thread-8/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
                                      [18:56:54] [Thread-8/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
                                      [18:56:54] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 1,219s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0,003s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0,003s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0,010s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0,009s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Render Manager took 0,148s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0,000s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0,022s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading GL properties took 0,001s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Render Global instance took 0,064s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Building Blocks Texture took 0,012s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Anisotropy and Mipmaps took 0,000s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0,001s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,003s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Blocks Texture took 0,009s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0,000s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,001s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Items Texture took 0,005s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Viewport took 0,002s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 0,264s
                                      [18:56:55] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp
                                      [18:56:55] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0,000s
                                      [18:56:55] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML
                                      [18:56:55] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0,000s
                                      [18:56:55] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge
                                      [18:56:55] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0,000s
                                      [18:56:55] [Client thread/TRACE] [pfm/pfm]: Sending event FMLInitializationEvent to mod pfm
                                      [18:56:55] [Client thread/TRACE] [pfm/pfm]: Sent event FMLInitializationEvent to mod pfm
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Plasmania Faction Mod took 0,000s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0,001s
                                      [18:56:55] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp
                                      [18:56:55] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp
                                      [18:56:55] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0,003s
                                      [18:56:55] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML
                                      [18:56:55] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML
                                      [18:56:55] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0,000s
                                      [18:56:55] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge
                                      [18:56:55] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge
                                      [18:56:55] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0,000s
                                      [18:56:55] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod pfm
                                      [18:56:55] [Client thread/TRACE] [pfm/pfm]: Sending event IMCEvent to mod pfm
                                      [18:56:55] [Client thread/TRACE] [pfm/pfm]: Sent event IMCEvent to mod pfm
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Plasmania Faction Mod took 0,000s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0,004s
                                      [18:56:55] [Client thread/INFO] [FML/]: Injecting itemstacks
                                      [18:56:55] [Client thread/INFO] [FML/]: Itemstack injection complete
                                      [18:56:55] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp
                                      [18:56:55] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0,000s
                                      [18:56:55] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML
                                      [18:56:55] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0,000s
                                      [18:56:55] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge
                                      [18:56:55] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0,080s
                                      [18:56:55] [Client thread/TRACE] [pfm/pfm]: Sending event FMLPostInitializationEvent to mod pfm
                                      [18:56:55] [Client thread/TRACE] [pfm/pfm]: Sent event FMLPostInitializationEvent to mod pfm
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Plasmania Faction Mod took 0,000s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0,081s
                                      [18:56:55] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp
                                      [18:56:55] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0,000s
                                      [18:56:55] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML
                                      [18:56:55] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0,000s
                                      [18:56:55] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge
                                      [18:56:55] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking:
                                      [18:56:55] [Client thread/DEBUG] [FML/Forge]:   11: RecipeEntry("Before", UNKNOWN, )
                                      [18:56:55] [Client thread/DEBUG] [FML/Forge]:   10: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless
                                      [18:56:55] [Client thread/DEBUG] [FML/Forge]:   9: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped
                                      [18:56:55] [Client thread/DEBUG] [FML/Forge]:   8: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped
                                      [18:56:55] [Client thread/DEBUG] [FML/Forge]:   7: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped
                                      [18:56:55] [Client thread/DEBUG] [FML/Forge]:   6: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless
                                      [18:56:55] [Client thread/DEBUG] [FML/Forge]:   5: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless
                                      [18:56:55] [Client thread/DEBUG] [FML/Forge]:   4: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless
                                      [18:56:55] [Client thread/DEBUG] [FML/Forge]:   3: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless
                                      [18:56:55] [Client thread/DEBUG] [FML/Forge]:   2: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless
                                      [18:56:55] [Client thread/DEBUG] [FML/Forge]:   1: RecipeEntry("After", UNKNOWN, )
                                      [18:56:55] [Client thread/DEBUG] [FML/Forge]: Sorting recipies
                                      [18:56:55] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0,007s
                                      [18:56:55] [Client thread/TRACE] [pfm/pfm]: Sending event FMLLoadCompleteEvent to mod pfm
                                      [18:56:55] [Client thread/TRACE] [pfm/pfm]: Sent event FMLLoadCompleteEvent to mod pfm
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Plasmania Faction Mod took 0,000s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0,008s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Freezing block and item id maps
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Registry consistency check successful
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Registry consistency check successful
                                      [18:56:55] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0,001s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0,005s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0,005s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Plasmania Faction Mod took 0,001s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Texture Loading took 0,157s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Mipmap generation took 0,110s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0,030s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,140s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0,408s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0,004s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0,000s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0,003s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Texture Loading took 0,061s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Mipmap generation took 0,008s
                                      [18:56:55] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0,009s
                                      [18:56:56] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,021s
                                      [18:56:56] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/items.png took 0,091s
                                      [18:56:56] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0,507s
                                      [18:56:56] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                      [18:56:56] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
                                      [18:56:56] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:     Author: Paul Lamb, www.paulscode.com
                                      [18:56:56] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                      [18:56:56] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                      [18:56:56] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
                                      [18:56:56] [Thread-10/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
                                      [18:56:56] [Thread-10/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
                                      [18:56:56] [Thread-10/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
                                      [18:56:56] [Sound Library Loader/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                      [18:56:57] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 1,913s
                                      [18:56:57] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 1,913s
                                      [18:56:57] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 1,925s
                                      [18:56:57] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
                                      [18:56:57] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
                                      [18:56:57] [Client thread/DEBUG] [Plasmania Faction Mod/]: Mod Plasmania Faction Mod is missing a pack.mcmeta file, substituting a dummy one
                                      [18:56:57] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 11,340s
                                      [18:57:28] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp
                                      [18:57:28] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Coder Pack took 0,000s
                                      [18:57:28] [Server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML
                                      [18:57:28] [Server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Forge Mod Loader took 0,000s
                                      [18:57:28] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge
                                      [18:57:28] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Forge took 0,000s
                                      [18:57:28] [Server thread/TRACE] [pfm/pfm]: Sending event FMLServerAboutToStartEvent to mod pfm
                                      [18:57:28] [Server thread/TRACE] [pfm/pfm]: Sent event FMLServerAboutToStartEvent to mod pfm
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Plasmania Faction Mod took 0,000s
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Bar Finished: ServerAboutToStart took 0,001s
                                      [18:57:28] [Server thread/INFO] [FML/]: Injecting existing block and item data into this server instance
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Registry consistency check successful
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Fixed item id mismatch pfm:uranium_ingot: 4100 (init) -> 4101 (map).
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Fixed item id mismatch pfm:oridium_nugget: 4098 (init) -> 4099 (map).
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Fixed item id mismatch pfm:pyrium_ingot: 4101 (init) -> 4103 (map).
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Fixed item id mismatch pfm:oridium_ingot: 4099 (init) -> 4100 (map).
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Fixed item id mismatch pfm:plasma_ingot: 4097 (init) -> 4098 (map).
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Registry consistency check successful
                                      [18:57:28] [Server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
                                      [18:57:28] [Server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0,000s
                                      [18:57:28] [Server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
                                      [18:57:28] [Server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0,000s
                                      [18:57:28] [Server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
                                      [18:57:28] [Server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0,001s
                                      [18:57:28] [Server thread/TRACE] [pfm/pfm]: Sending event FMLModIdMappingEvent to mod pfm
                                      [18:57:28] [Server thread/TRACE] [pfm/pfm]: Sent event FMLModIdMappingEvent to mod pfm
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Plasmania Faction Mod took 0,000s
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0,002s
                                      [18:57:28] [Server thread/INFO] [FML/]: Applying holder lookups
                                      [18:57:28] [Server thread/INFO] [FML/]: Holder lookups applied
                                      [18:57:28] [Server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world
                                      [18:57:28] [Server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
                                      [18:57:28] [Server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
                                      [18:57:28] [Server thread/INFO] [FML/]: Loading dimension 0 (Test World) (net.minecraft.server.integrated.IntegratedServer@18c34d6)
                                      [18:57:29] [Server thread/INFO] [FML/]: Loading dimension 1 (Test World) (net.minecraft.server.integrated.IntegratedServer@18c34d6)
                                      [18:57:29] [Server thread/INFO] [FML/]: Loading dimension -1 (Test World) (net.minecraft.server.integrated.IntegratedServer@18c34d6)
                                      [18:57:30] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp
                                      [18:57:30] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp
                                      [18:57:30] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Coder Pack took 0,724s
                                      [18:57:30] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML
                                      [18:57:30] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML
                                      [18:57:30] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Forge Mod Loader took 0,000s
                                      [18:57:30] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge
                                      [18:57:30] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge
                                      [18:57:30] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Forge took 0,002s
                                      [18:57:30] [Server thread/TRACE] [pfm/pfm]: Sending event FMLServerStartingEvent to mod pfm
                                      [18:57:30] [Server thread/TRACE] [pfm/pfm]: Sent event FMLServerStartingEvent to mod pfm
                                      [18:57:30] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Plasmania Faction Mod took 0,000s
                                      [18:57:30] [Server thread/DEBUG] [FML/]: Bar Finished: ServerStarting took 0,727s
                                      [18:57:30] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp
                                      [18:57:30] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp
                                      [18:57:30] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Coder Pack took 0,000s
                                      [18:57:30] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML
                                      [18:57:30] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML
                                      [18:57:30] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Forge Mod Loader took 0,000s
                                      [18:57:30] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge
                                      [18:57:30] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge
                                      [18:57:30] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Forge took 0,000s
                                      [18:57:30] [Server thread/TRACE] [pfm/pfm]: Sending event FMLServerStartedEvent to mod pfm
                                      [18:57:30] [Server thread/TRACE] [pfm/pfm]: Sent event FMLServerStartedEvent to mod pfm
                                      [18:57:30] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Plasmania Faction Mod took 0,000s
                                      [18:57:30] [Server thread/DEBUG] [FML/]: Bar Finished: ServerStarted took 0,002s
                                      [18:57:31] [Netty Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0
                                      [18:57:31] [Netty Client IO #0/TRACE] [FML/]: $ServerHello->FMLHandshakeClientState$2:HELLO
                                      [18:57:31] [Netty Client IO #0/INFO] [FML/]: Server protocol version 2
                                      [18:57:31] [Netty Client IO #0/DEBUG] [FML/]: Received override dimension 0
                                      [18:57:31] [Netty IO #1/TRACE] [FML/]: $ClientHello->FMLHandshakeServerState$2:HELLO
                                      [18:57:31] [Netty IO #1/INFO] [FML/]: Client protocol version 2
                                      [18:57:31] [Netty IO #1/TRACE] [FML/]: $ModList:4 mods->FMLHandshakeServerState$2:HELLO
                                      [18:57:31] [Netty IO #1/INFO] [FML/]: Client attempting to join with 4 mods : FML@7.10.99.99,pfm@0.1,Forge@10.13.4.1558,mcp@9.05
                                      [18:57:31] [Netty IO #1/INFO] [FML/]: Attempting connection with missing mods [] at CLIENT
                                      [18:57:31] [Netty Client IO #0/TRACE] [FML/]: $ModList:4 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA
                                      [18:57:31] [Netty Client IO #0/INFO] [FML/]: Attempting connection with missing mods [] at SERVER
                                      [18:57:31] [Netty IO #1/TRACE] [FML/]: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK
                                      [18:57:31] [Netty Client IO #0/TRACE] [FML/]: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE
                                      [18:57:31] [Netty IO #1/TRACE] [FML/]: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE
                                      [18:57:31] [Netty Client IO #0/TRACE] [FML/]: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE
                                      [18:57:31] [Netty IO #1/TRACE] [FML/]: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE
                                      [18:57:31] [Client thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
                                      [18:57:31] [Client thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
                                      [18:57:31] [Client thread/INFO] [FML/]: [Client thread] Client side modded connection established
                                      [18:57:31] [Server thread/INFO] [FML/]: [Server thread] Server side modded connection established
                                      [18:57:31] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0
                                      [18:57:31] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Test World
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Test World
                                      [18:57:45] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppingEvent to mod mcp
                                      [18:57:45] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppingEvent to mod mcp
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Coder Pack took 0,000s
                                      [18:57:45] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStoppingEvent to mod FML
                                      [18:57:45] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStoppingEvent to mod FML
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Forge Mod Loader took 0,000s
                                      [18:57:45] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppingEvent to mod Forge
                                      [18:57:45] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppingEvent to mod Forge
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Forge took 0,000s
                                      [18:57:45] [Server thread/TRACE] [pfm/pfm]: Sending event FMLServerStoppingEvent to mod pfm
                                      [18:57:45] [Server thread/TRACE] [pfm/pfm]: Sent event FMLServerStoppingEvent to mod pfm
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Plasmania Faction Mod took 0,000s
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Bar Finished: ServerStopping took 0,001s
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save Test World
                                      [18:57:45] [Server thread/INFO] [FML/]: Unloading dimension 0
                                      [18:57:45] [Server thread/INFO] [FML/]: Unloading dimension -1
                                      [18:57:45] [Server thread/INFO] [FML/]: Unloading dimension 1
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Reverting to frozen data state.
                                      [18:57:45] [Server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
                                      [18:57:45] [Server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0,000s
                                      [18:57:45] [Server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
                                      [18:57:45] [Server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0,000s
                                      [18:57:45] [Server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
                                      [18:57:45] [Server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0,001s
                                      [18:57:45] [Server thread/TRACE] [pfm/pfm]: Sending event FMLModIdMappingEvent to mod pfm
                                      [18:57:45] [Server thread/TRACE] [pfm/pfm]: Sent event FMLModIdMappingEvent to mod pfm
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Plasmania Faction Mod took 0,000s
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0,002s
                                      [18:57:45] [Server thread/INFO] [FML/]: Applying holder lookups
                                      [18:57:45] [Server thread/INFO] [FML/]: Holder lookups applied
                                      [18:57:45] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppedEvent to mod mcp
                                      [18:57:45] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppedEvent to mod mcp
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Coder Pack took 0,000s
                                      [18:57:45] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStoppedEvent to mod FML
                                      [18:57:45] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStoppedEvent to mod FML
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Forge Mod Loader took 0,000s
                                      [18:57:45] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppedEvent to mod Forge
                                      [18:57:45] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppedEvent to mod Forge
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Forge took 0,000s
                                      [18:57:45] [Server thread/TRACE] [pfm/pfm]: Sending event FMLServerStoppedEvent to mod pfm
                                      [18:57:45] [Server thread/TRACE] [pfm/pfm]: Sent event FMLServerStoppedEvent to mod pfm
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Plasmania Faction Mod took 0,000s
                                      [18:57:45] [Server thread/DEBUG] [FML/]: Bar Finished: ServerStopped took 0,001s
                                      [18:57:47] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: 
                                      [18:57:47] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
                                      [18:57:47] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:     Author: Paul Lamb, www.paulscode.com
                                      [18:57:47] [Client thread/INFO] [STDOUT/]: [paulscode.sound.SoundSystemLogger:message:69]:
                                      

                                      Merci beaucouop pour ton implication en tout cas ^^

                                      1 réponse Dernière réponse Répondre Citer 0
                                      • robin4002
                                        robin4002 Moddeurs confirmés Rédacteurs Administrateurs dernière édition par

                                        C’est étonnant que rien ne fonctionnent car il semble bien trouver les fichiers de lang:

                                        [18:56:53] [Client thread/DEBUG] [pfm/]: Enabling mod pfm
                                        [18:56:53] [Client thread/DEBUG] [FML/]: Injecting found translation assets for lang en_US at assets/pfm/lang/en_US.lang into language system
                                        [18:56:53] [Client thread/DEBUG] [FML/]: Injecting found translation assets for lang fr_FR at assets/pfm/lang/fr_FR.lang into language system
                                        

                                        Si tu compile le mods et que tu tests en prod (donc sur minecraft lancé depuis le launcher), cela fonctionne ?

                                        robin4002 1 réponse Dernière réponse Répondre Citer 0
                                        • Ravriel
                                          Ravriel dernière édition par

                                          Minecraft lancé depuis éclipse ? Non

                                          1 réponse Dernière réponse Répondre Citer 0
                                          • robin4002
                                            robin4002 Moddeurs confirmés Rédacteurs Administrateurs @robin4002 dernière édition par

                                            @robin4002 a dit dans Problème avec les noms des items et blocks :

                                            (donc sur minecraft lancé depuis le launcher),

                                            1 réponse Dernière réponse Répondre Citer 0
                                            • 1
                                            • 2
                                            • 1 / 2
                                            • Premier message
                                              Dernier message
                                            Design by Woryk
                                            Contact / Mentions Légales

                                            MINECRAFT FORGE FRANCE © 2018

                                            Powered by NodeBB