21 mars 2016, 16:24

Toujours le même problème:

Classe Principale:


package com.example.examplemod;

import fr.yohannlog.blocks.BlockMod;
import fr.yohannlog.blocks.Table;
import fr.yohannlog.proxy.CommonProxy;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.init.Blocks;
import net.minecraft.item.Item;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.Mod.Instance;
import net.minecraftforge.fml.common.SidedProxy;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.fml.common.registry.GameRegistry;

@Mod(modid = Main.MOD_ID, name = Main.MOD_NAME, version = Main.VERSION)
public class Main
{

public static final String MOD_ID = "decoplus";
public static final String MOD_NAME = "Decoration Plus";
public static final String VERSION = "1.0";

@Instance("decoplus")
public static Main instance;

@SidedProxy(clientSide = "fr.yohannlog.proxy.ClientProxy", serverSide = "fr.yohannlog.proxy.CommonProxy")
public static CommonProxy proxy;

@EventHandler
public void preInit(FMLPreInitializationEvent event)
{
BlockMod.init();
proxy.registerRender();
BlockMod.register();

}

@EventHandler
public void init(FMLInitializationEvent event)
{
}

@EventHandler
public void postInit(FMLPostInitializationEvent event)
{

}
}

Logs:


2016-03-21 17:20:52,842 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2016-03-21 17:20:52,843 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[17:20:52] [main/INFO] [GradleStart]: username: yofrgames@outlook.fr
[17:20:52] [main/INFO] [GradleStart]: Extra: []
[17:20:52] [main/INFO] [GradleStart]: Password found, attempting login
[17:20:52] [main/INFO]: Logging in with username & password
[17:20:54] [main/INFO] [GradleStart]: Login Succesful!
[17:20:54] [main/INFO] [GradleStart]: Running with arguments: [–userProperties, [], –assetsDir, C:/Users/yofrg/.gradle/caches/minecraft/assets, --assetIndex, 1.9, --userType, mojang, --accessToken{REDACTED}, --version, 1.9, --uuid, 819db7a6ad3a40729d35fbff2faf592c, --username, EngiiSikar, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[17:20:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[17:20:54] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[17:20:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[17:20:54] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[17:20:54] [main/INFO] [FML]: Forge Mod Loader version 12.16.0.1776 for Minecraft 1.9 loading
[17:20:54] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_74, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_74
[17:20:54] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[17:20:54] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[17:20:54] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[17:20:54] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[17:20:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[17:20:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[17:20:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[17:20:54] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[17:20:54] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[17:20:54] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[17:20:54] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[17:20:55] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[17:20:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[17:20:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[17:20:56] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[17:20:56] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[17:20:56] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[17:20:56] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
2016-03-21 17:20:56,720 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2016-03-21 17:20:56,744 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2016-03-21 17:20:56,746 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[17:20:57] [Client thread/INFO]: Setting user: EngiiSikar
[17:20:59] [Client thread/INFO]: LWJGL Version: 2.9.4
[17:21:00] [Client thread/WARN] [FML]: =============================================================
[17:21:00] [Client thread/WARN] [FML]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML!
[17:21:00] [Client thread/WARN] [FML]: Offendor: com/sun/jna/Native.main([Ljava/lang/String;)V
[17:21:00] [Client thread/WARN] [FML]: Use FMLCommonHandler.exitJava instead
[17:21:00] [Client thread/WARN] [FML]: =============================================================
[17:21:00] [Client thread/INFO] [STDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:250]: –-- Minecraft Crash Report ----
// This doesn't make any sense!

Time: 21/03/16 17:21
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.9
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_74, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 4832696064 bytes (4608 MB) / 5173149696 bytes (4933 MB) up to 5173149696 bytes (4933 MB)
JVM Flags: 3 total; -Xincgc -Xmx5000M -Xms5000M
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML:
Loaded coremods (and transformers):
GL info: ' Vendor: 'Intel' Version: '4.3.0 - Build 10.18.15.4256' Renderer: 'Intel(R) HD Graphics 4600'
[17:21:00] [Client thread/INFO] [FML]: MinecraftForge v12.16.0.1776 Initialized
[17:21:00] [Client thread/INFO] [FML]: Replaced 207 ore recipies
[17:21:01] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[17:21:01] [Client thread/INFO] [FML]: Searching C:\Users\yofrg\Desktop\Minecraft Forge Mods\Improvization\run\mods for mods
[17:21:02] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
[17:21:02] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, decoplus] at CLIENT
[17:21:02] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, decoplus] at SERVER
[17:21:02] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Example Mod
[17:21:02] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[17:21:02] [Client thread/INFO] [FML]: Found 418 ObjectHolder annotations
[17:21:02] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
[17:21:02] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[17:21:03] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[17:21:03] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[17:21:03] [Client thread/INFO] [STDOUT]: [fr.yohannlog.proxy.CommonProxy:registerRender:10]: méthode côté serveur
[17:21:03] [Client thread/INFO] [FML]: Applying holder lookups
[17:21:03] [Client thread/INFO] [FML]: Holder lookups applied
[17:21:03] [Client thread/INFO] [FML]: Injecting itemstacks
[17:21:03] [Client thread/INFO] [FML]: Itemstack injection complete
[17:21:03] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: BETA_OUTDATED Target: 12.16.0.1782
[17:21:14] [Sound Library Loader/INFO]: Starting up SoundSystem…
[17:21:14] [Thread-8/INFO]: Initializing LWJGL OpenAL
[17:21:14] [Thread-8/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[17:21:14] [Thread-8/INFO]: OpenAL initialized.
[17:21:14] [Sound Library Loader/INFO]: Sound engine started
[17:21:16] [Client thread/INFO] [FML]: Max texture size: 16384
[17:21:16] [Client thread/INFO]: Created: 16x16 textures-atlas
[17:21:17] [Client thread/INFO] [FML]: Injecting itemstacks
[17:21:17] [Client thread/INFO] [FML]: Itemstack injection complete
[17:21:17] [Client thread/INFO] [FML]:   Unknown recipe class! net.minecraft.item.crafting.RecipeTippedArrow Modder please refer to net.minecraftforge.oredict.RecipeSorter
[17:21:17] [Client thread/INFO] [FML]:   Unknown recipe class! net.minecraft.item.crafting.ShieldRecipes$Decoration Modder please refer to net.minecraftforge.oredict.RecipeSorter
[17:21:18] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
[17:21:18] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Example Mod
[17:21:19] [Client thread/INFO]: SoundSystem shutting down…
[17:21:19] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
[17:21:19] [Sound Library Loader/INFO]: Starting up SoundSystem…
[17:21:19] [Thread-10/INFO]: Initializing LWJGL OpenAL
[17:21:19] [Thread-10/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[17:21:19] [Thread-10/INFO]: OpenAL initialized.
[17:21:20] [Sound Library Loader/INFO]: Sound engine started
[17:21:21] [Client thread/INFO] [FML]: Max texture size: 16384
[17:21:22] [Client thread/INFO]: Created: 1024x512 textures-atlas
[17:21:44] [Server thread/INFO]: Starting integrated minecraft server version 1.9
[17:21:44] [Server thread/INFO]: Generating keypair
[17:21:44] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance
[17:21:44] [Server thread/INFO] [FML]: Found a missing id from the world decoplus:lampe_trust
[17:21:44] [Server thread/INFO] [FML]: Applying holder lookups
[17:21:44] [Server thread/INFO] [FML]: Holder lookups applied
[17:21:44] [Server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@f24bcd0)
[17:21:45] [Server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@f24bcd0)
[17:21:45] [Server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@f24bcd0)
[17:21:45] [Server thread/INFO]: Preparing start region for level 0
[17:21:45] [Server thread/INFO]: Changing view distance to 12, from 10
[17:21:47] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
[17:21:47] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
[17:21:47] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : FML@8.0.99.99,Forge@12.16.0.1776,mcp@9.19,decoplus@1.0
[17:21:47] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
[17:21:47] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[17:21:47] [Server thread/INFO]: EngiiSikar[local:E:e962c4bc] logged in with entity id 119 at (-137.5606069842354, 4.0, -1995.276959284508)
[17:21:47] [Server thread/INFO]: EngiiSikar joined the game
[17:21:47] [Server thread/INFO]: Saving and pausing game…
[17:21:47] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
[17:21:48] [Server thread/INFO]: Saving chunks for level 'New World'/Nether
[17:21:48] [Server thread/INFO]: Saving chunks for level 'New World'/The End
[17:22:58] [Server thread/INFO]: Saving and pausing game…
[17:22:58] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
[17:22:58] [Server thread/INFO]: Saving chunks for level 'New World'/Nether
[17:22:58] [Server thread/INFO]: Saving chunks for level 'New World'/The End
z[17:23:34] [Server thread/INFO]: Stopping server
[17:23:34] [Server thread/INFO]: Saving players
[17:23:34] [Server thread/INFO]: Saving worlds
[17:23:34] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
[17:23:34] [Server thread/INFO]: Saving chunks for level 'New World'/Nether
[17:23:34] [Server thread/INFO]: Saving chunks for level 'New World'/The End
[17:23:34] [Server thread/INFO] [FML]: Unloading dimension 0
[17:23:34] [Server thread/INFO] [FML]: Unloading dimension 0
[17:23:34] [Server thread/INFO] [FML]: Unloading dimension 0
[17:23:34] [Server thread/INFO] [FML]: Applying holder lookups
[17:23:34] [Server thread/INFO] [FML]: Holder lookups applied
[17:23:35] [Client thread/INFO]: Stopping!
[17:23:35] [Client thread/INFO]: SoundSystem shutting down…
[17:23:35] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release