1. Le forum de Minecraft-France va définitivement fermer ses portes. Celui-ci restera en lecture seule mais vous ne pourrez plus y apporter de nouveaux topics. Nous vous invitons à nous rejoindre sur le Discord de Minecraft-France qui permet de présenter vos projets, discuter avec la communauté etc.. Merci à tous d'avoir fait vivre ce forum de nombreuses années. Pour nous rejoindre sur Discord, Cliquez ici

Résolu Crash quand ma structure structure ce génère.

Discussion dans 'Aide à la création de mod' créé par Arthaïr, 9 Mar 2016.

  1. Arthaïr

    Arthaïr Mineur

    Inscrit:
    1 Août 2014
    Messages:
    344
    Points:
    119
    Sexe:
    Homme
    Non j'ai écrit generate, toujours le même problème.

    Oui je sais, il faut que je le fasse...
     
  2. pifou92000

    pifou92000 Mineur de Diamants

    Inscrit:
    23 Juin 2011
    Messages:
    2 690
    Points:
    195
    Sexe:
    Homme
    Sur ton screen c'est écrit "Strucure1" au lieu de "Structure1".
     
  3. Arthaïr

    Arthaïr Mineur

    Inscrit:
    1 Août 2014
    Messages:
    344
    Points:
    119
    Sexe:
    Homme
    Je l'ai déjà corriger avant de prendre le screen, car j'avais fait une faute dans la class structure 1.
    Si tu regardes bien le screen à gauche il dans le package com.arthur.mod.init il est marquer Strucure1.
    Donc cela ne posais pas le problème. :p
     
  4. pifou92000

    pifou92000 Mineur de Diamants

    Inscrit:
    23 Juin 2011
    Messages:
    2 690
    Points:
    195
    Sexe:
    Homme
    Et bien peut-être que dans cette classe "Strucure1", il n'y a pas la méthode generate.
    Quand tu fais une faute au nom d'une classe, il faut corriger la faute, pas créer une deuxième classe qui a la faute dans son nom. x)

    En fait ça serait plus pratique que tu mettes à jour le code sur GitHub quand tu changes quelque chose, car ça devient difficile de deviner où tu as fait des erreurs.
     
  5. Arthaïr

    Arthaïr Mineur

    Inscrit:
    1 Août 2014
    Messages:
    344
    Points:
    119
    Sexe:
    Homme
    En effet j'avais oublier de mettre la méthode generate (il fraudais vraiment que je fasse attention quand j'ai des erreurs d'inatention)
    J'ai mis à jour le GitHub https://github.com/ArthurCola/Mod-Amazonite

    EDIT: Le je crash lorsque je lance une partie solo.

    Code (cpp):
    ---- Minecraft Crash Report ----
    // Ouch. That hurt :(

    Time: 12/03/16 18:02
    Description: Exception in server tick loop

    java.lang.NullPointerException: Exception in server tick loop
        at com.arthur.mod.World.WorldGen.addOre(WorldGen.java:46)
        at com.arthur.mod.World.WorldGen.generateOverWorld(WorldGen.java:61)
        at com.arthur.mod.World.WorldGen.generate(WorldGen.java:28)
        at net.minecraftforge.fml.common.registry.GameRegistry.generateWorld(GameRegistry.java:112)
        at net.minecraft.world.gen.ChunkProviderServer.populate(ChunkProviderServer.java:293)
        at net.minecraft.world.chunk.Chunk.populateChunk(Chunk.java:1206)
        at net.minecraft.world.gen.ChunkProviderServer.originalLoadChunk(ChunkProviderServer.java:196)
        at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:138)
        at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:108)
        at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:343)
        at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:113)
        at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:130)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:500)
        at java.lang.Thread.run(Thread.java:745)


    A detailed walkthrough of the error, its code path and all known details is as follows:
    ---------------------------------------------------------------------------------------

    -- System Details --
    Details:
        Minecraft Version: 1.8
        Operating System: Windows 7 (amd64) version 6.1
        Java Version: 1.8.0_65, Oracle Corporation
        Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
        Memory: 767093488 bytes (731 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)
        JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
        IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95
        FML: MCP v9.10 FML v8.0.99.99 Minecraft Forge 11.14.4.1577 4 mods loaded, 4 mods active
        States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
        UCHIJAA    mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
        UCHIJAA    FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.8-11.14.4.1577.jar)
        UCHIJAA    Forge{11.14.4.1577} [Minecraft Forge] (forgeSrc-1.8-11.14.4.1577.jar)
        UCHIJAA    arthur{1.0.0} [rubisplus] (bin)
        Loaded coremods (and transformers):
        GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.
        Profiler Position: N/A (disabled)
        Player Count: 0 / 8; []
        Type: Integrated Server (map_client.txt)
        Is Modded: Definitely; Client brand changed to 'fml,forge'
     
    #20 Arthaïr, 12 Mar 2016
    Dernière édition: 12 Mar 2016
  6. pifou92000

    pifou92000 Mineur de Diamants

    Inscrit:
    23 Juin 2011
    Messages:
    2 690
    Points:
    195
    Sexe:
    Homme
    C'est parce que tu utilises "BlocksMod.amazonite" en appelant ta méthode "addOre". Cet objet n'a jamais été initialisé.
    Ce que tu veux, c'est "BlockMod.amazonite", sans le S à Block.

    Donc, comme je te l'ai dit plus haut, commence par supprimer les classes qui ne servent à rien comme ce "BlocksMod.java", car c'est impossible de coder proprement dans ces conditions.
     
  7. Arthaïr

    Arthaïr Mineur

    Inscrit:
    1 Août 2014
    Messages:
    344
    Points:
    119
    Sexe:
    Homme
    J'ai dus rajouter ça après avoir suprimmer BlocksMod
    Code (cpp):
    private Block setUnlocalizedName(String string)
        {
            return null;
        }
    Pour ne pas avoir d'erreur à la ligne 22-23.

    Le jeu crash toujours
    Code (cpp):
    ---- Minecraft Crash Report ----
    // I bet Cylons wouldn't have this problem.'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
        UCH    mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
        UCH    FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.8-11.14.4.1577.jar)
        UCH    Forge{11.14.4.1577} [Minecraft Forge] (forgeSrc-1.8-11.14.4.1577.jar)
        UCE    arthur{1.0.0} [rubisplus] (bin)
        Loaded coremods (and transformers):
        GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 347.52' Renderer: 'GeForce GTX 750/PCIe/SSE2'
        Launched Version: 1.8
        LWJGL: 2.9.1
        OpenGL: GeForce GTX 750/PCIe/SSE2 GL version 4.5.0 NVIDIA 347.52, NVIDIA Corporation
        GL Caps: Using GL 1.3 multitexturing.
    Using GL 1.3 texture combiners.
    Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
    Shaders are available because OpenGL 2.1 is supported.
    VBOs are available because OpenGL 1.5 is supported.

        Using VBOs: No
        Is Modded: Definitely; Client brand changed to '
    fml,forge'
        Type: Client (map_client.txt)
        Resource Packs: []
        Current Language: English (US)
        Profiler Position: N/A (disabled)
     
  8. pifou92000

    pifou92000 Mineur de Diamants

    Inscrit:
    23 Juin 2011
    Messages:
    2 690
    Points:
    195
    Sexe:
    Homme
    Je suis plutôt sûr que le jeu crash à cause de ce que tu as ajouté.
    Mais le code n'est plus en ligne sur GitHub, donc je ne peux pas te donner plus de détails.
     
  9. robin4002

    robin4002 Support Technique
    Staff

    Inscrit:
    17 Août 2012
    Messages:
    5 478
    Points:
    229
    Sexe:
    Homme
    Pas normal. C'est une fonction déjà existant de la classe bloc, il n'y a aucune raison que tu la rajoute, surtout si c'est pour retourner null .. (ce qui explique le crash).
    Le code ne causait aucune erreur chez moi. Je ne sais pas ce que tu as fait.
     
  10. Arthaïr

    Arthaïr Mineur

    Inscrit:
    1 Août 2014
    Messages:
    344
    Points:
    119
    Sexe:
    Homme
    En fait si je supprime
    Code (cpp):
    private Block setUnlocalizedName(String string)
        {
            return null;
        }
    , setUnlocalizedName il me le souligne.
    Screenshot_1.png
     
  11. pifou92000

    pifou92000 Mineur de Diamants

    Inscrit:
    23 Juin 2011
    Messages:
    2 690
    Points:
    195
    Sexe:
    Homme
    Ah oui d'accord, tu utilisais la classe "BlocksMod" comme classe de bloc, mais avec des choses inutiles dedans.
    Donc je n'aurais pas dû te dire de supprimer "BlocksMod", il te faut effectivement une classe "extends Block", pour déclarer les blocs de ton mod. Mais elle doit être simple et ne pas contenir de variables statiques. ^^
     
  12. Arthaïr

    Arthaïr Mineur

    Inscrit:
    1 Août 2014
    Messages:
    344
    Points:
    119
    Sexe:
    Homme
    On revient au même problème que au début le jeu crash quand je génère la structure.
    Le GitHub https://github.com/ArthurCola/Mod-Amazonite

    Code (cpp):
    [19:53:47] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
    [19:53:47] [main/INFO] [FML/]: Forge Mod Loader version 11.14.4.1577 for Minecraft 1.8 loading
    [19:53:47] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_65, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jdk1.8.0_65\jre
    [19:53:47] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\Arthur\Desktop\forge-1.8-11.14.4.1577-mdk\bin;C:\Users\Arthur\.gradle\caches\minecraft\net\minecraftforge\forge\1.8-11.14.4.1577\snapshot\20141130\forgeSrc-1.8-11.14.4.1577.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\Arthur\.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\Arthur\.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\Arthur\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\Arthur\.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\Arthur\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\Arthur\.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\Arthur\.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\Arthur\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\Arthur\.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\Arthur\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar;C:\Users\Arthur\.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\Arthur\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.15.Final\85cad5eb4fc8ae2ecc990dc7c411771a091ded5\netty-all-4.0.15.Final.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.17\893a8c553c0cfc9b6fbdff023747e30152ab09ec\authlib-1.5.17.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.6.1\5655f6fb44aece10e5b3ad7cfee3e6936031c068\realms-1.6.1.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\Arthur\.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\Arthur\.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\Arthur\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.1\f58c5aabcef0e41718a564be9f8e412fff8db847\lwjgl-2.9.1.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.1\290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e\lwjgl_util-2.9.1.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\6.5\320a2dfd18513a5f41b4e75729df684488cbd925\twitch-6.5.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\Arthur\.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\Arthur\.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\Arthur\.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\Arthur\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\206c4ccaecdbcfd2a1631150c69a97bbc9c20c11\twitch-platform-6.5-natives-windows-32.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\9fdd0fd5aed0817063dcf95b69349a171f447ebd\twitch-platform-6.5-natives-windows-64.jar;C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\5f9d1ee26257b3a33f0ca06fed335ef462af659f\twitch-platform-6.5-natives-osx.jar;C:\Users\Arthur\.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\Arthur\.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\Arthur\.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\Arthur\.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\Arthur\.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\Arthur\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar;C:\Users\Arthur\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar;C:\Users\Arthur\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar;C:\Users\Arthur\.gradle\caches\minecraft\net\minecraftforge\forge\1.8-11.14.4.1577\start
    [19:53:47] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files\Java\jdk1.8.0_65\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files/Java/jdk1.8.0_65/bin/../jre/bin/server;C:/Program Files/Java/jdk1.8.0_65/bin/../jre/bin;C:/Program Files/Java/jdk1.8.0_65/bin/../jre/lib/amd64;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)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Skype\Phone\;C:\Program Files\Java\jdk1.8.0_65\bin;C:\Users\arthur\Desktop\création de mod\eclipse;;.;C:/Users/Arthur/.gradle/caches/minecraft/net/minecraft/natives/1.8
    [19:53:47] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
    [19:53:47] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin
    [19:53:47] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
    [19:53:47] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin
    [19:53:47] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin
    [19:53:47] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin
    [19:53:47] [main/DEBUG] [FML/]: All fundamental core mods are successfully located
    [19:53:47] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\Arthur\Desktop\forge-1.8-11.14.4.1577-mdk\run\.
    [19:53:47] [main/DEBUG] [FML/]: Discovering coremods
    [19:53:47] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
    [19:53:47] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
    [19:53:47] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
    [19:53:47] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
    [19:53:47] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
    [19:53:47] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
    [19:53:47] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
    [19:53:47] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
    [19:53:47] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [19:53:47] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers
    [19:53:47] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer
    [19:53:47] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer
    [19:53:47] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer
    [19:53:47] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer
    [19:53:47] [main/DEBUG] [FML/]: Injection complete
    [19:53:47] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin}
    [19:53:47] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin
    [19:53:47] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
    [19:53:49] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing
    [19:53:49] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully
    [19:53:49] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [19:53:49] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers
    [19:53:49] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.classloading.FluidIdTransformer
    [19:53:49] [main/DEBUG] [FML/]: Injection complete
    [19:53:49] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}
    [19:53:49] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin
    [19:53:49] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully
    [19:53:49] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
    [19:53:49] [main/DEBUG] [FML/]: Loaded 159 rules from AccessTransformer config file forge_at.cfg
    [19:53:49] [main/DEBUG] [FML/]: Validating minecraft
    [19:53:49] [main/DEBUG] [FML/]: Minecraft validated, launching...
    [19:53:49] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
    [19:53:49] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
    [19:53:49] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
    [19:53:49] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}
    [19:53:54] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0,005s
    [19:53:54] [Client thread/INFO] [STDOUT/]: [net.minecraftforge.fml.client.SplashProgress:start:246]: ---- Minecraft Crash Report ----
    // Would you like a cupcake?

    Time: 12/03/16 19: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.8
        Operating System: Windows 7 (amd64) version 6.1
        Java Version: 1.8.0_65, Oracle Corporation
        Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
        Memory: 860563912 bytes (820 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)
        JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
        IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
        FML:
        Loaded coremods (and transformers):
        GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 347.52' Renderer: 'GeForce GTX 750/PCIe/SSE2'
    [19:53:54] [Client thread/INFO] [MinecraftForge/]: Attempting early MinecraftForge initialization
    [19:53:54] [Client thread/INFO] [FML/]: MinecraftForge v11.14.4.1577 Initialized
    [19:53:54] [Client thread/INFO] [FML/]: Replaced 204 ore recipies
    [19:53:54] [Client thread/INFO] [MinecraftForge/]: Completed early MinecraftForge initialization
    [19:53:54] [Client thread/DEBUG] [FML/]: File C:\Users\Arthur\Desktop\forge-1.8-11.14.4.1577-mdk\run\config\injectedDependencies.json not found. No dependencies injected
    [19:53:54] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]
    [19:53:54] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes
    [19:53:54] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Arthur\Desktop\forge-1.8-11.14.4.1577-mdk\bin, examining for mod candidates
    [19:53:54] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Arthur\.gradle\caches\minecraft\net\minecraftforge\forge\1.8-11.14.4.1577\snapshot\20141130\forgeSrc-1.8-11.14.4.1577.jar, examining for mod candidates
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar
    [19:53:54] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Arthur\.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
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.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
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.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
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.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
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.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
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.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
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.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
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar
    [19:53:54] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar, examining for mod candidates
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.15.Final\85cad5eb4fc8ae2ecc990dc7c411771a091ded5\netty-all-4.0.15.Final.jar
    [19:53:54] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar, examining for mod candidates
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.17\893a8c553c0cfc9b6fbdff023747e30152ab09ec\authlib-1.5.17.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.6.1\5655f6fb44aece10e5b3ad7cfee3e6936031c068\realms-1.6.1.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.1\f58c5aabcef0e41718a564be9f8e412fff8db847\lwjgl-2.9.1.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.1\290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e\lwjgl_util-2.9.1.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\6.5\320a2dfd18513a5f41b4e75729df684488cbd925\twitch-6.5.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\206c4ccaecdbcfd2a1631150c69a97bbc9c20c11\twitch-platform-6.5-natives-windows-32.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\9fdd0fd5aed0817063dcf95b69349a171f447ebd\twitch-platform-6.5-natives-windows-64.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\5f9d1ee26257b3a33f0ca06fed335ef462af659f\twitch-platform-6.5-natives-osx.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\18215140f010c05b9f86ef6f0f8871954d2ccebf\twitch-external-platform-4.5-natives-windows-32.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\c3cde57891b935d41b6680a9c5e1502eeab76d86\twitch-external-platform-4.5-natives-windows-64.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\4c517eca808522457dd95ee8fc1fbcdbb602efbe\lwjgl-platform-2.9.1-natives-windows.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\aa9aae879af8eb378e22cfc64db56ec2ca9a44d1\lwjgl-platform-2.9.1-natives-linux.jar
    [19:53:54] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac\lwjgl-platform-2.9.1-natives-osx.jar
    [19:53:54] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Arthur\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar, examining for mod candidates
    [19:53:54] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Arthur\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates
    [19:53:54] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Arthur\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates
    [19:53:54] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Arthur\.gradle\caches\minecraft\net\minecraftforge\forge\1.8-11.14.4.1577\start, examining for mod candidates
    [19:53:54] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully
    [19:53:54] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer
    [19:53:54] [Client thread/INFO] [FML/]: Searching C:\Users\Arthur\Desktop\forge-1.8-11.14.4.1577-mdk\run\mods for mods
    [19:53:54] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods
    [19:53:54] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package assets
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package assets.arthur
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package assets.arthur.blockstates
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package assets.arthur.lang
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package assets.arthur.models
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package assets.arthur.models.block
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package assets.arthur.models.item
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package assets.arthur.textures
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package assets.arthur.textures.blocks
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package assets.arthur.textures.items
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package assets.arthur.textures.models
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package assets.arthur.textures.models.armor
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package com
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package com.arthur
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package com.arthur.mod
    [19:53:54] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (com.arthur.mod.ArthurMod) - loading
    [19:53:54] [Client thread/TRACE] [arthur/]: Parsed dependency info : [] [] []
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package com.arthur.mod.Block
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package com.arthur.mod.init
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package com.arthur.mod.Item
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package com.arthur.mod.proxy
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package com.arthur.mod.Structure
    [19:53:54] [Client thread/TRACE] [FML/]: Recursing into package com.arthur.mod.World
    [19:53:54] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.8-11.14.4.1577.jar for potential mods
    [19:53:54] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.8-11.14.4.1577.jar appears to be missing an mcmod.info file
    [19:53:56] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods
    [19:53:56] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file
    [19:53:56] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods
    [19:53:56] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file
    [19:53:56] [Client thread/DEBUG] [FML/]: Examining file guava-17.0.jar for potential mods
    [19:53:56] [Client thread/DEBUG] [FML/]: The mod container guava-17.0.jar appears to be missing an mcmod.info file
    [19:53:56] [Client thread/DEBUG] [FML/]: Examining file jsr305-2.0.1.jar for potential mods
    [19:53:56] [Client thread/DEBUG] [FML/]: The mod container jsr305-2.0.1.jar appears to be missing an mcmod.info file
    [19:53:56] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods
    [19:53:56] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file
    [19:53:56] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods
    [19:53:56] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file
    [19:53:56] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods
    [19:53:56] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start
    [19:53:56] [Client thread/TRACE] [FML/]: Recursing into package net
    [19:53:56] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge
    [19:53:56] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle
    [19:53:56] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers
    [19:53:56] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load
    [19:53:56] [Client thread/TRACE] [FML/]: Received a system property request '
    '
    [19:53:56] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods
    [19:53:56] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods
    [19:53:56] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.8-11.14.4.1577.jar [en_US, en_US]
    [19:53:56] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.8-11.14.4.1577.jar [en_US, en_US]
    [19:53:56] [Client thread/DEBUG] [arthur/]: Enabling mod arthur
    [19:53:56] [Client thread/DEBUG] [FML/]: Injecting found translation assets for lang FR_fr at assets/arthur/lang/FR_fr.lang into language system
    [19:53:57] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied
    [19:53:57] [Client thread/TRACE] [FML/]: All mod requirements are satisfied
    [19:53:57] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list
    [19:53:57] [Client thread/TRACE] [FML/]: Mod sorting completed successfully
    [19:53:57] [Client thread/DEBUG] [FML/]: Mod sorting data
    [19:53:57] [Client thread/DEBUG] [FML/]:     arthur(rubisplus:1.0.0): bin ()
    [19:53:57] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp
    [19:53:57] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0,007s
    [19:53:57] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML
    [19:53:57] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists
    [19:53:57] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection
    [19:53:57] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99)
    [19:53:57] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, arthur] at CLIENT
    [19:53:57] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, arthur] at SERVER
    [19:53:57] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 0,510s
    [19:53:57] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge
    [19:53:57] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed
    [19:53:57] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection
    [19:53:57] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (11.14.4.1577)
    [19:53:57] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0,020s
    [19:53:57] [Client thread/TRACE] [arthur/arthur]: Sending event FMLConstructionEvent to mod arthur
    [19:53:57] [Client thread/TRACE] [FML/arthur]: Mod arthur is using network checker : Accepting version 1.0.0
    [19:53:57] [Client thread/TRACE] [FML/arthur]: Testing mod arthur to verify it accepts its own version in a remote connection
    [19:53:57] [Client thread/TRACE] [FML/arthur]: The mod arthur accepts its own version (1.0.0)
    [19:53:57] [Client thread/DEBUG] [FML/arthur]: Attempting to inject @SidedProxy classes into arthur
    [19:53:57] [Client thread/TRACE] [arthur/arthur]: Sent event FMLConstructionEvent to mod arthur
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Step: Construction - rubisplus took 0,048s
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 0,586s
    [19:53:57] [Client thread/DEBUG] [FML/]: Mod signature data
    [19:53:57] [Client thread/DEBUG] [FML/]:      Valid Signatures:
    [19:53:57] [Client thread/DEBUG] [FML/]:      Missing Signatures:
    [19:53:57] [Client thread/DEBUG] [FML/]:         mcp    (Minecraft Coder Pack    9.05)    minecraft.jar
    [19:53:57] [Client thread/DEBUG] [FML/]:         FML    (Forge Mod Loader    8.0.99.99)    forgeSrc-1.8-11.14.4.1577.jar
    [19:53:57] [Client thread/DEBUG] [FML/]:         Forge    (Minecraft Forge    11.14.4.1577)    forgeSrc-1.8-11.14.4.1577.jar
    [19:53:57] [Client thread/DEBUG] [FML/]:         arthur    (rubisplus    1.0.0)    bin
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0,010s
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0,016s
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0,014s
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:rubisplus took 0,011s
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0,053s
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0,054s
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0,105s
    [19:53:57] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
    [19:53:57] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
    [19:53:57] [Client thread/DEBUG] [rubisplus/]: Mod rubisplus is missing a pack.mcmeta file, substituting a dummy one
    [19:53:57] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations
    [19:53:57] [Client thread/INFO] [FML/]: Found 384 ObjectHolder annotations
    [19:53:57] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations
    [19:53:57] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations
    [19:53:57] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp
    [19:53:57] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0,004s
    [19:53:57] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML
    [19:53:57] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0,036s
    [19:53:57] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge
    [19:53:57] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0
    [19:53:57] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0,051s
    [19:53:57] [Client thread/TRACE] [arthur/arthur]: Sending event FMLPreInitializationEvent to mod arthur
    [19:53:57] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
    [19:53:57] [Client thread/TRACE] [arthur/arthur]: Sent event FMLPreInitializationEvent to mod arthur
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - rubisplus took 0,048s
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 0,139s
    [19:53:57] [Client thread/INFO] [FML/]: Applying holder lookups
    [19:53:57] [Client thread/INFO] [FML/]: Holder lookups applied
    [19:53:57] [Client thread/INFO] [FML/]: Injecting itemstacks
    [19:53:57] [Client thread/INFO] [FML/]: Itemstack injection complete
    [19:53:57] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0,000s
    [19:53:58] [Forge Version Check/DEBUG] [ForgeVersionCheck/Forge]: [Forge] Received version check data:
    {
      "homepage": "http://files.minecraftforge.net/maven/net/minecraftforge/forge/",
      "promos": {
        "1.5.2-latest": "7.8.1.738",
        "1.5.2-recommended": "7.8.1.737",
        "1.6.1-latest": "8.9.0.775",
        "1.6.2-latest": "9.10.1.871",
        "1.6.2-recommended": "9.10.1.871",
        "1.6.3-latest": "9.11.0.878",
        "1.6.4-latest": "9.11.1.1345",
        "1.6.4-recommended": "9.11.1.1345",
        "1.7.10-latest": "10.13.4.1614",
        "1.7.10-latest-1.7.10": "10.13.2.1343",
        "1.7.10-recommended": "10.13.4.1558",
        "1.7.2-latest": "10.12.2.1147",
        "1.7.2-recommended": "10.12.2.1121",
        "1.8-latest": "11.14.4.1577",
        "1.8-recommended": "11.14.4.1563",
        "1.8.8-latest": "11.15.0.1655",
        "1.8.9-latest": "11.15.1.1764",
        "1.8.9-recommended": "11.15.1.1722",
        "latest": "11.15.1.1764",
        "latest-1.7.10": "10.13.2.1343",
        "recommended": "11.15.1.1722"
      }
    }
    [19:53:58] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Found status: AHEAD Target: null
    [19:54:00] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 2,067s
    [19:54:00] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0,005s
    [19:54:00] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0,004s
    [19:54:00] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0,008s
    [19:54:00] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0,009s
    [19:54:00] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0,001s
    [19:54:00] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0,012s
    [19:54:00] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0,000s
    [19:54:00] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0,000s
    [19:54:00] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0,000s
    [19:54:00] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0,000s
    [19:54:02] [Client thread/INFO] [FML/]: Max texture size: 16384
    [19:54:02] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0,002s
    [19:54:02] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,004s
    [19:54:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 2,273s
    [19:54:02] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 2,380s
    [19:54:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0,004s
    [19:54:02] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 0,295s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0,000s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0,000s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0,000s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0,281s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 2,970s
    [19:54:03] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp
    [19:54:03] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0,000s
    [19:54:03] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML
    [19:54:03] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0,001s
    [19:54:03] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge
    [19:54:03] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0,000s
    [19:54:03] [Client thread/TRACE] [arthur/arthur]: Sending event FMLInitializationEvent to mod arthur
    [19:54:03] [Client thread/TRACE] [arthur/arthur]: Sent event FMLInitializationEvent to mod arthur
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - rubisplus took 0,007s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0,009s
    [19:54:03] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp
    [19:54:03] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp
    [19:54:03] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0,005s
    [19:54:03] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML
    [19:54:03] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML
    [19:54:03] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0,000s
    [19:54:03] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge
    [19:54:03] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge
    [19:54:03] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0,000s
    [19:54:03] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod arthur
    [19:54:03] [Client thread/TRACE] [arthur/arthur]: Sending event IMCEvent to mod arthur
    [19:54:03] [Client thread/TRACE] [arthur/arthur]: Sent event IMCEvent to mod arthur
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - rubisplus took 0,000s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0,006s
    [19:54:03] [Client thread/INFO] [FML/]: Injecting itemstacks
    [19:54:03] [Client thread/INFO] [FML/]: Itemstack injection complete
    [19:54:03] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp
    [19:54:03] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0,000s
    [19:54:03] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML
    [19:54:03] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0,001s
    [19:54:03] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge
    [19:54:03] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0,117s
    [19:54:03] [Client thread/TRACE] [arthur/arthur]: Sending event FMLPostInitializationEvent to mod arthur
    [19:54:03] [Client thread/TRACE] [arthur/arthur]: Sent event FMLPostInitializationEvent to mod arthur
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - rubisplus took 0,000s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0,118s
    [19:54:03] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp
    [19:54:03] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0,001s
    [19:54:03] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML
    [19:54:03] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0,000s
    [19:54:03] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge
    [19:54:03] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking:
    [19:54:03] [Client thread/DEBUG] [FML/Forge]:   14: RecipeEntry("Before", UNKNOWN, )
    [19:54:03] [Client thread/DEBUG] [FML/Forge]:   13: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless
    [19:54:03] [Client thread/DEBUG] [FML/Forge]:   12: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped
    [19:54:03] [Client thread/DEBUG] [FML/Forge]:   11: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped
    [19:54:03] [Client thread/DEBUG] [FML/Forge]:   10: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped
    [19:54:03] [Client thread/DEBUG] [FML/Forge]:   9: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless
    [19:54:03] [Client thread/DEBUG] [FML/Forge]:   8: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless
    [19:54:03] [Client thread/DEBUG] [FML/Forge]:   7: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless
    [19:54:03] [Client thread/DEBUG] [FML/Forge]:   6: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless
    [19:54:03] [Client thread/DEBUG] [FML/Forge]:   5: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless
    [19:54:03] [Client thread/DEBUG] [FML/Forge]:   4: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless
    [19:54:03] [Client thread/DEBUG] [FML/Forge]:   3: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless
    [19:54:03] [Client thread/DEBUG] [FML/Forge]:   2: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless
    [19:54:03] [Client thread/DEBUG] [FML/Forge]:   1: RecipeEntry("After", UNKNOWN, )
    [19:54:03] [Client thread/DEBUG] [FML/Forge]: Sorting recipies
    [19:54:03] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0,011s
    [19:54:03] [Client thread/TRACE] [arthur/arthur]: Sending event FMLLoadCompleteEvent to mod arthur
    [19:54:03] [Client thread/TRACE] [arthur/arthur]: Sent event FMLLoadCompleteEvent to mod arthur
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - rubisplus took 0,000s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0,013s
    [19:54:03] [Client thread/DEBUG] [FML/]: Freezing block and item id maps
    [19:54:03] [Client thread/DEBUG] [FML/]: Registry consistency check successful
    [19:54:03] [Client thread/DEBUG] [FML/]: Registry consistency check successful
    [19:54:03] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0,000s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0,014s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0,012s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:rubisplus took 0,002s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0,000s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0,012s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0,000s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/misc/forcefield.png took 0,005s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0,006s
    [19:54:03] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0,022s
    [19:54:06] [Client thread/INFO] [FML/]: Max texture size: 16384
    [19:54:07] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0,343s
    [19:54:07] [Client thread/DEBUG] [FML/]: Bar Finished: Mipmap generation took 0,297s
    [19:54:07] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0,034s
    [19:54:07] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,053s
    [19:54:07] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 4,251s
    [19:54:07] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 4,253s
    [19:54:07] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 4,281s
    [19:54:07] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
    [19:54:07] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
    [19:54:07] [Client thread/DEBUG] [rubisplus/]: Mod rubisplus is missing a pack.mcmeta file, substituting a dummy one
    [19:54:07] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 13,138s
    [19:54:45] [Client thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
    [19:54:46] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp
    [19:54:46] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp
    [19:54:46] [Server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Coder Pack took 0,001s
    [19:54:46] [Server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML
    [19:54:46] [Server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML
    [19:54:46] [Server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Forge Mod Loader took 0,000s
    [19:54:46] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge
    [19:54:46] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge
    [19:54:46] [Server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Forge took 0,000s
    [19:54:46] [Server thread/TRACE] [arthur/arthur]: Sending event FMLServerAboutToStartEvent to mod arthur
    [19:54:46] [Server thread/TRACE] [arthur/arthur]: Sent event FMLServerAboutToStartEvent to mod arthur
    [19:54:46] [Server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - rubisplus took 0,000s
    [19:54:46] [Server thread/DEBUG] [FML/]: Bar Finished: ServerAboutToStart took 0,002s
    [19:54:46] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
    [19:54:46] [Server thread/INFO] [FML/]: Injecting existing block and item data into this server instance
    [19:54:46] [Server thread/DEBUG] [FML/]: Registry consistency check successful
    [19:54:46] [Server thread/DEBUG] [FML/]: Registry consistency check successful
    [19:54:46] [Server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
    [19:54:46] [Server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
    [19:54:46] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0,001s
    [19:54:46] [Server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
    [19:54:46] [Server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
    [19:54:46] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0,000s
    [19:54:46] [Server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
    [19:54:46] [Server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
    [19:54:46] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0,001s
    [19:54:46] [Server thread/TRACE] [arthur/arthur]: Sending event FMLModIdMappingEvent to mod arthur
    [19:54:46] [Server thread/TRACE] [arthur/arthur]: Sent event FMLModIdMappingEvent to mod arthur
    [19:54:46] [Server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - rubisplus took 0,000s
    [19:54:46] [Server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0,002s
    [19:54:46] [Server thread/INFO] [FML/]: Applying holder lookups
    [19:54:46] [Server thread/INFO] [FML/]: Holder lookups applied
    [19:54:46] [Server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world
    [19:54:46] [Server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
    [19:54:46] [Server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
    [19:54:46] [Server thread/INFO] [FML/]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@21d9f22b)
    [19:54:46] [Server thread/INFO] [FML/]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@21d9f22b)
    [19:54:46] [Server thread/INFO] [FML/]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@21d9f22b)
    [19:54:56] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp
    [19:54:56] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp
    [19:54:56] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Coder Pack took 0,000s
    [19:54:56] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML
    [19:54:56] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML
    [19:54:56] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Forge Mod Loader took 0,000s
    [19:54:56] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge
    [19:54:56] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge
    [19:54:56] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Forge took 0,002s
    [19:54:56] [Server thread/TRACE] [arthur/arthur]: Sending event FMLServerStartingEvent to mod arthur
    [19:54:56] [Server thread/TRACE] [arthur/arthur]: Sent event FMLServerStartingEvent to mod arthur
    [19:54:56] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarting - rubisplus took 0,000s
    [19:54:56] [Server thread/DEBUG] [FML/]: Bar Finished: ServerStarting took 0,003s
    [19:54:56] [Server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp
    [19:54:56] [Server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp
    [19:54:56] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Coder Pack took 0,000s
    [19:54:56] [Server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML
    [19:54:56] [Server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML
    [19:54:56] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Forge Mod Loader took 0,000s
    [19:54:56] [Server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge
    [19:54:56] [Server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge
    [19:54:56] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Forge took 0,000s
    [19:54:56] [Server thread/TRACE] [arthur/arthur]: Sending event FMLServerStartedEvent to mod arthur
    [19:54:56] [Server thread/TRACE] [arthur/arthur]: Sent event FMLServerStartedEvent to mod arthur
    [19:54:56] [Server thread/DEBUG] [FML/]: Bar Step: ServerStarted - rubisplus took 0,000s
    [19:54:56] [Server thread/DEBUG] [FML/]: Bar Finished: ServerStarted took 0,001s
    [19:54:58] [Netty Local Client IO #0/TRACE] [FML/]: Handshake channel activating
    [19:54:58] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: null->FMLHandshakeClientState$1:START
    [19:54:58] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: HELLO
    [19:54:58] [Netty Server IO #1/TRACE] [FML/]: Handshake channel activating
    [19:54:58] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: null->FMLHandshakeServerState$1:START
    [19:54:58] [Netty Server IO #1/DEBUG] [FML/]:   Next: HELLO
    [19:54:58] [Netty Local Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0
    [19:54:58] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ServerHello->FMLHandshakeClientState$2:HELLO
    [19:54:58] [Netty Local Client IO #0/INFO] [FML/]: Server protocol version 2
    [19:54:58] [Netty Local Client IO #0/DEBUG] [FML/]: Received override dimension 0
    [19:54:58] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ClientHello->FMLHandshakeServerState$2:HELLO
    [19:54:58] [Netty Server IO #1/INFO] [FML/]: Client protocol version 2
    [19:54:58] [Netty Server IO #1/DEBUG] [FML/]:   Next: HELLO
    [19:54:58] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: WAITINGSERVERDATA
    [19:54:58] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ModList:4 mods->FMLHandshakeServerState$2:HELLO
    [19:54:58] [Netty Server IO #1/INFO] [FML/]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]
    [19:54:58] [Netty Server IO #1/DEBUG] [FML/]:   Next: WAITINGCACK
    [19:54:58] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ModList:4 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA
    [19:54:58] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: PENDINGCOMPLETE
    [19:54:58] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK
    [19:54:58] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE
    [19:54:58] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: COMPLETE
    [19:54:58] [Netty Server IO #1/DEBUG] [FML/]:   Next: COMPLETE
    [19:54:58] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE
    [19:54:58] [Netty Server IO #1/DEBUG] [FML/]:   Next: DONE
    [19:54:58] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
    [19:54:58] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
    [19:54:58] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE
    [19:54:58] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: DONE
    [19:54:58] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE
    [19:54:58] [Netty Server IO #1/DEBUG] [FML/]:   Next: DONE
    [19:54:58] [Netty Local Client IO #0/INFO] [FML/]: [Netty Local Client IO #0] Client side modded connection established
    [19:54:58] [Server thread/INFO] [FML/]: [Server thread] Server side modded connection established
    [19:54:58] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0
    [19:55:03] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
    [19:55:57] [Server thread/FATAL] [FML/]: Exception caught executing FutureTask: java.util.concurrent.ExecutionException: java.lang.ClassCastException: com.arthur.mod.Block.Blocks cannot be cast to net.minecraft.block.state.IBlockState
    java.util.concurrent.ExecutionException: java.lang.ClassCastException: com.arthur.mod.Block.Blocks cannot be cast to net.minecraft.block.state.IBlockState
        at java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?:1.8.0_65]
        at java.util.concurrent.FutureTask.get(FutureTask.java:192) ~[?:1.8.0_65]
        at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:715) [FMLCommonHandler.class:?]
        at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:727) [MinecraftServer.class:?]
        at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669) [MinecraftServer.class:?]
        at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171) [IntegratedServer.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540) [MinecraftServer.class:?]
        at java.lang.Thread.run(Thread.java:745) [?:1.8.0_65]
    Caused by: java.lang.ClassCastException: com.arthur.mod.Block.Blocks cannot be cast to net.minecraft.block.state.IBlockState
        at com.arthur.mod.Structure.Structure1.generate(Structure1.java:322) ~[Structure1.class:?]
        at com.arthur.mod.World.WorldGen.generateOverWorld(WorldGen.java:74) ~[WorldGen.class:?]
        at com.arthur.mod.World.WorldGen.generate(WorldGen.java:29) ~[WorldGen.class:?]
        at net.minecraftforge.fml.common.registry.GameRegistry.generateWorld(GameRegistry.java:112) ~[GameRegistry.class:?]
        at net.minecraft.world.gen.ChunkProviderServer.populate(ChunkProviderServer.java:293) ~[ChunkProviderServer.class:?]
        at net.minecraft.world.chunk.Chunk.populateChunk(Chunk.java:1162) ~[Chunk.class:?]
        at net.minecraft.world.gen.ChunkProviderServer.originalLoadChunk(ChunkProviderServer.java:196) ~[ChunkProviderServer.class:?]
        at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:138) ~[ChunkProviderServer.class:?]
        at net.minecraft.server.management.PlayerManager$PlayerInstance.<init>(PlayerManager.java:413) ~[PlayerManager$PlayerInstance.class:?]
        at net.minecraft.server.management.PlayerManager.getPlayerInstance(PlayerManager.java:115) ~[PlayerManager.class:?]
        at net.minecraft.server.management.PlayerManager.filterChunkLoadQueue(PlayerManager.java:198) ~[PlayerManager.class:?]
        at net.minecraft.server.management.PlayerManager.updateMountedMovingPlayer(PlayerManager.java:301) ~[PlayerManager.class:?]
        at net.minecraft.server.management.ServerConfigurationManager.serverUpdateMountedMovingPlayer(ServerConfigurationManager.java:367) ~[ServerConfigurationManager.class:?]
        at net.minecraft.network.NetHandlerPlayServer.processPlayer(NetHandlerPlayServer.java:442) ~[NetHandlerPlayServer.class:?]
        at net.minecraft.network.play.client.C03PacketPlayer.processPacket(C03PacketPlayer.java:36) ~[C03PacketPlayer.class:?]
        at net.minecraft.network.play.client.C03PacketPlayer$C04PacketPlayerPosition.processPacket(C03PacketPlayer.java:154) ~[C03PacketPlayer$C04PacketPlayerPosition.class:?]
        at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:24) ~[PacketThreadUtil$1.class:?]
        at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_65]
        at java.util.concurrent.FutureTask.run(FutureTask.java:266) ~[?:1.8.0_65]
        at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:714) ~[FMLCommonHandler.class:?]
        ... 5 more
    [19:56:00] [Server thread/FATAL] [FML/]: Exception caught executing FutureTask: java.util.concurrent.ExecutionException: java.lang.ClassCastException: com.arthur.mod.Block.Blocks cannot be cast to net.minecraft.block.state.IBlockState
    java.util.concurrent.ExecutionException: java.lang.ClassCastException: com.arthur.mod.Block.Blocks cannot be cast to net.minecraft.block.state.IBlockState
        at java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?:1.8.0_65]
        at java.util.concurrent.FutureTask.get(FutureTask.java:192) ~[?:1.8.0_65]
        at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:715) [FMLCommonHandler.class:?]
        at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:727) [MinecraftServer.class:?]
        at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669) [MinecraftServer.class:?]
        at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171) [IntegratedServer.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540) [MinecraftServer.class:?]
        at java.lang.Thread.run(Thread.java:745) [?:1.8.0_65]
    Caused by: java.lang.ClassCastException: com.arthur.mod.Block.Blocks cannot be cast to net.minecraft.block.state.IBlockState
        at com.arthur.mod.Structure.Structure1.generate(Structure1.java:322) ~[Structure1.class:?]
        at com.arthur.mod.World.WorldGen.generateOverWorld(WorldGen.java:74) ~[WorldGen.class:?]
        at com.arthur.mod.World.WorldGen.generate(WorldGen.java:29) ~[WorldGen.class:?]
        at net.minecraftforge.fml.common.registry.GameRegistry.generateWorld(GameRegistry.java:112) ~[GameRegistry.class:?]
        at net.minecraft.world.gen.ChunkProviderServer.populate(ChunkProviderServer.java:293) ~[ChunkProviderServer.class:?]
        at net.minecraft.world.chunk.Chunk.populateChunk(Chunk.java:1192) ~[Chunk.class:?]
        at net.minecraft.world.gen.ChunkProviderServer.originalLoadChunk(ChunkProviderServer.java:196) ~[ChunkProviderServer.class:?]
        at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:138) ~[ChunkProviderServer.class:?]
        at net.minecraft.server.management.PlayerManager$PlayerInstance.<init>(PlayerManager.java:413) ~[PlayerManager$PlayerInstance.class:?]
        at net.minecraft.server.management.PlayerManager.getPlayerInstance(PlayerManager.java:115) ~[PlayerManager.class:?]
        at net.minecraft.server.management.PlayerManager.filterChunkLoadQueue(PlayerManager.java:198) ~[PlayerManager.class:?]
        at net.minecraft.server.management.PlayerManager.updateMountedMovingPlayer(PlayerManager.java:301) ~[PlayerManager.class:?]
        at net.minecraft.server.management.ServerConfigurationManager.serverUpdateMountedMovingPlayer(ServerConfigurationManager.java:367) ~[ServerConfigurationManager.class:?]
        at net.minecraft.network.NetHandlerPlayServer.processPlayer(NetHandlerPlayServer.java:442) ~[NetHandlerPlayServer.class:?]
        at net.minecraft.network.play.client.C03PacketPlayer.processPacket(C03PacketPlayer.java:36) ~[C03PacketPlayer.class:?]
        at net.minecraft.network.play.client.C03PacketPlayer$C04PacketPlayerPosition.processPacket(C03PacketPlayer.java:154) ~[C03PacketPlayer$C04PacketPlayerPosition.class:?]
        at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:24) ~[PacketThreadUtil$1.class:?]
        at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_65]
        at java.util.concurrent.FutureTask.run(FutureTask.java:266) ~[?:1.8.0_65]
        at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:714) ~[FMLCommonHandler.class:?]
        ... 5 more
    [19:56:00] [Server thread/FATAL] [FML/]: Exception caught executing FutureTask: java.util.concurrent.ExecutionException: java.lang.ClassCastException: com.arthur.mod.Block.Blocks cannot be cast to net.minecraft.block.state.IBlockState
    java.util.concurrent.ExecutionException: java.lang.ClassCastException: com.arthur.mod.Block.Blocks cannot be cast to net.minecraft.block.state.IBlockState
        at java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?:1.8.0_65]
        at java.util.concurrent.FutureTask.get(FutureTask.java:192) ~[?:1.8.0_65]
        at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:715) [FMLCommonHandler.class:?]
        at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:727) [MinecraftServer.class:?]
        at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669) [MinecraftServer.class:?]
        at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171) [IntegratedServer.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540) [MinecraftServer.class:?]
        at java.lang.Thread.run(Thread.java:745) [?:1.8.0_65]
    Caused by: java.lang.ClassCastException: com.arthur.mod.Block.Blocks cannot be cast to net.minecraft.block.state.IBlockState
        at com.arthur.mod.Structure.Structure1.generate(Structure1.java:322) ~[Structure1.class:?]
        at com.arthur.mod.World.WorldGen.generateOverWorld(WorldGen.java:74) ~[WorldGen.class:?]
        at com.arthur.mod.World.WorldGen.generate(WorldGen.java:29) ~[WorldGen.class:?]
        at net.minecraftforge.fml.common.registry.GameRegistry.generateWorld(GameRegistry.java:112) ~[GameRegistry.class:?]
        at net.minecraft.world.gen.ChunkProviderServer.populate(ChunkProviderServer.java:293) ~[ChunkProviderServer.class:?]
        at net.minecraft.world.chunk.Chunk.populateChunk(Chunk.java:1192) ~[Chunk.class:?]
        at net.minecraft.world.gen.ChunkProviderServer.originalLoadChunk(ChunkProviderServer.java:196) ~[ChunkProviderServer.class:?]
        at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:138) ~[ChunkProviderServer.class:?]
        at net.minecraft.server.management.PlayerManager$PlayerInstance.<init>(PlayerManager.java:413) ~[PlayerManager$PlayerInstance.class:?]
        at net.minecraft.server.management.PlayerManager.getPlayerInstance(PlayerManager.java:115) ~[PlayerManager.class:?]
        at net.minecraft.server.management.PlayerManager.filterChunkLoadQueue(PlayerManager.java:198) ~[PlayerManager.class:?]
        at net.minecraft.server.management.PlayerManager.updateMountedMovingPlayer(PlayerManager.java:301) ~[PlayerManager.class:?]
        at net.minecraft.server.management.ServerConfigurationManager.serverUpdateMountedMovingPlayer(ServerConfigurationManager.java:367) ~[ServerConfigurationManager.class:?]
        at net.minecraft.network.NetHandlerPlayServer.processPlayer(NetHandlerPlayServer.java:442) ~[NetHandlerPlayServer.class:?]
        at net.minecraft.network.play.client.C03PacketPlayer.processPacket(C03PacketPlayer.java:36) ~[C03PacketPlayer.class:?]
        at net.minecraft.network.play.client.C03PacketPlayer$C04PacketPlayerPosition.processPacket(C03PacketPlayer.java:154) ~[C03PacketPlayer$C04PacketPlayerPosition.class:?]
        at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:24) ~[PacketThreadUtil$1.class:?]
        at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_65]
        at java.util.concurrent.FutureTask.run(FutureTask.java:266) ~[?:1.8.0_65]
        at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:714) ~[FMLCommonHandler.class:?]
        ... 5 more
    [19:56:01] [Server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
    [19:56:01] [Client thread/INFO] [STDOUT/]: [net.minecraft.init.Bootstrap:printToSYSOUT:663]: ---- Minecraft Crash Report ----
    // I bet Cylons wouldn'
    'Player238'/315, l='New World', x=3,12, y=108,75, z=316,78]]
        Chunk stats: ServerChunkCache: 686 Drop: 0
        Level seed: 7560494493909870934
        Level generator: ID 04 - customized, ver 0. Features enabled: true
        Level generator options: {"coordinateScale":684.412,"heightScale":684.412,"lowerLimitScale":512.0,"upperLimitScale":512.0,"depthNoiseScaleX":200.0,"depthNoiseScaleZ":200.0,"depthNoiseScaleExponent":0.5,"mainNoiseScaleX":80.0,"mainNoiseScaleY":160.0,"mainNoiseScaleZ":80.0,"baseSize":8.5,"stretchY":12.0,"biomeDepthWeight":1.0,"biomeDepthOffset":0.0,"biomeScaleWeight":1.0,"biomeScaleOffset":0.0,"seaLevel":63,"useCaves":true,"useDungeons":true,"dungeonChance":8,"useStrongholds":true,"useVillages":true,"useMineShafts":true,"useTemples":true,"useMonuments":true,"useRavines":true,"useWaterLakes":true,"waterLakeChance":4,"useLavaLakes":true,"lavaLakeChance":80,"useLavaOceans":false,"fixedBiome":1,"biomeSize":4,"riverSize":4,"dirtSize":33,"dirtCount":10,"dirtMinHeight":0,"dirtMaxHeight":256,"gravelSize":33,"gravelCount":8,"gravelMinHeight":0,"gravelMaxHeight":256,"graniteSize":33,"graniteCount":10,"graniteMinHeight":0,"graniteMaxHeight":80,"dioriteSize":33,"dioriteCount":10,"dioriteMinHeight":0,"dioriteMaxHeight":80,"andesiteSize":33,"andesiteCount":10,"andesiteMinHeight":0,"andesiteMaxHeight":80,"coalSize":17,"coalCount":20,"coalMinHeight":0,"coalMaxHeight":128,"ironSize":9,"ironCount":20,"ironMinHeight":0,"ironMaxHeight":64,"goldSize":9,"goldCount":2,"goldMinHeight":0,"goldMaxHeight":32,"redstoneSize":8,"redstoneCount":8,"redstoneMinHeight":0,"redstoneMaxHeight":16,"diamondSize":8,"diamondCount":1,"diamondMinHeight":0,"diamondMaxHeight":16,"lapisSize":7,"lapisCount":1,"lapisCenterHeight":16,"lapisSpread":16}
        Level spawn location: 71,00,64,00,268,00 - World: (71,64,268), Chunk: (at 7,4,12 in 4,16; contains blocks 64,0,256 to 79,255,271), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
        Level time: 329 game time, 329 day time
        Level dimension: 0
        Level storage version: 0x04ABD - Anvil
        Level weather: Rain time: 68611 (now: false), thunder time: 71950 (now: false)
        Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: true
    Stacktrace:
        at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:764)
        at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669)
        at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540)
        at java.lang.Thread.run(Thread.java:745)

    -- System Details --
    Details:
        Minecraft Version: 1.8
        Operating System: Windows 7 (amd64) version 6.1
        Java Version: 1.8.0_65, Oracle Corporation
        Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
        Memory: 521871920 bytes (497 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)
        JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
        IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95
        FML: MCP v9.10 FML v8.0.99.99 Minecraft Forge 11.14.4.1577 4 mods loaded, 4 mods active
        States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
        UCHIJAAAA    mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
        UCHIJAAAA    FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.8-11.14.4.1577.jar)
        UCHIJAAAA    Forge{11.14.4.1577} [Minecraft Forge] (forgeSrc-1.8-11.14.4.1577.jar)
        UCHIJAAAA    arthur{1.0.0} [rubisplus] (bin)
        Loaded coremods (and transformers):
        GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.
        Profiler Position: N/A (disabled)
        Player Count: 1 / 8; [EntityPlayerMP['Player238'/315, l='New World', x=3,12, y=108,75, z=316,78]]
        Type: Integrated Server (map_client.txt)
        Is Modded: Definitely; Client brand changed to 'fml,forge'
    [19:56:01] [Client thread/INFO] [STDOUT/]: [net.minecraft.init.Bootstrap:printToSYSOUT:663]: #@!@# Game crashed! Crash report saved to: #@!@# .\crash-reports\crash-2016-03-12_19.56.01-server.txt
     
  13. robin4002

    robin4002 Support Technique
    Staff

    Inscrit:
    17 Août 2012
    Messages:
    5 478
    Points:
    229
    Sexe:
    Homme
    world.setBlockState(new BlockPos(i + 4, j + 4, k + 2), (IBlockState)BlockMod.amazoniteblock);
    ->
    world.setBlockState(new BlockPos(i + 4, j + 4, k + 2), BlockMod.amazoniteblock.getDefaultBlockState());
     
  14. Arthaïr

    Arthaïr Mineur

    Inscrit:
    1 Août 2014
    Messages:
    344
    Points:
    119
    Sexe:
    Homme
  15. robin4002

    robin4002 Support Technique
    Staff

    Inscrit:
    17 Août 2012
    Messages:
    5 478
    Points:
    229
    Sexe:
    Homme
    Retires Block, c'est juste getDefaultState
     

Partager cette page