Résolu Clear Inv Du Coffre En Deco Reco
-
Bonjour,
J’ai crée un coffre mais quand je déco et reco de mon monde les items qui sont dedans disparaissent.
J’ai cherché pendant pas mal de temps en essayant de voir se qui pouvais poser se bug sans trouver.
Merci De Votre Aide.Classe de mon block :
package com.mod.destrium.blocks; import com.mod.destrium.ModDestrium; import com.mod.destrium.Reference; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.client.renderer.texture.IIconRegister; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.item.EntityItem; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.inventory.IInventory; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.IIcon; import net.minecraft.world.World; public class iron_chest extends Block { private IIcon top, bottom, here; public iron_chest(Material material) { super(material); } public boolean isOpaqueCube() { return false; } public void registerBlockIcons(IIconRegister iiconRegister) { this.blockIcon = iiconRegister.registerIcon(Reference.MOD_ID + ":ironchest1"); this.top = iiconRegister.registerIcon(Reference.MOD_ID + ":ironchest2"); this.bottom = iiconRegister.registerIcon(Reference.MOD_ID + ":ironchest3"); this.here = iiconRegister.registerIcon(Reference.MOD_ID + ":ironchest4"); } public IIcon getIcon(int side, int metadata) { if (side == 0) { return this.bottom; } else if (side == 1) { return this.top; } else if (side == 2) { return this.here; } return this.blockIcon; } @Override public TileEntity createTileEntity(World world, int metadata) { return new TileEntityChest1(); } @Override public boolean hasTileEntity(int metadata) { return true; } public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int side, float hitX, float hitY, float hitZ) { if (world.isRemote) { return true; } else { player.openGui(ModDestrium.instance, 0, world, x, y, z); return true; } } public void breakBlock(World world, int x, int y, int z, Block block, int metadata) { TileEntity tileentity = world.getTileEntity(x, y, z); if (tileentity instanceof IInventory) { IInventory inv = (IInventory) tileentity; for (int i1 = 0; i1 < inv.getSizeInventory(); ++i1) { ItemStack itemstack = inv.getStackInSlot(i1); if (itemstack != null) { float f = world.rand.nextFloat() * 0.8F + 0.1F; float f1 = world.rand.nextFloat() * 0.8F + 0.1F; EntityItem entityitem; for (float f2 = world.rand.nextFloat() * 0.8F + 0.1F; itemstack.stackSize > 0; world .spawnEntityInWorld(entityitem)) { int j1 = world.rand.nextInt(21) + 10; if (j1 > itemstack.stackSize) { j1 = itemstack.stackSize; } itemstack.stackSize -= j1; entityitem = new EntityItem(world, (double) ((float) x + f), (double) ((float) y + f1), (double) ((float) z + f2), new ItemStack(itemstack.getItem(), j1, itemstack.getItemDamage())); float f3 = 0.05F; entityitem.motionX = (double) ((float) world.rand.nextGaussian() * f3); entityitem.motionY = (double) ((float) world.rand.nextGaussian() * f3 + 0.2F); entityitem.motionZ = (double) ((float) world.rand.nextGaussian() * f3); if (itemstack.hasTagCompound()) { entityitem.getEntityItem() .setTagCompound((NBTTagCompound) itemstack.getTagCompound().copy()); } } } } world.func_147453_f(x, y, z, block); } super.breakBlock(world, x, y, z, block, metadata); } public void onBlockPlacedBy(World world, int x, int y, int z, EntityLivingBase living, ItemStack stack) { TileEntity tile = world.getTileEntity(x, y, z); if (tile instanceof TileEntityChest1) { if (stack.hasDisplayName()) { ((TileEntityChest1) tile).setCustomName(stack.getDisplayName()); } } } }
Classe de le TileEntity de mon block:
package com.mod.destrium.blocks; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.inventory.IInventory; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagList; import net.minecraft.network.NetworkManager; import net.minecraft.network.Packet; import net.minecraft.network.play.server.S35PacketUpdateTileEntity; import net.minecraft.tileentity.TileEntity; import net.minecraftforge.common.util.Constants; public class TileEntityChest1 extends TileEntity implements IInventory { private int number; private ItemStack[] contents = new ItemStack[36]; private String customName; @Override public void readFromNBT(NBTTagCompound compound) { if (compound.hasKey("CustomName", Constants.NBT.TAG_STRING)) { this.customName = compound.getString("CustomName"); } NBTTagList nbttaglist = compound.getTagList("Items", Constants.NBT.TAG_COMPOUND); this.contents = new ItemStack[this.getSizeInventory()]; for (int i = 0; i < nbttaglist.tagCount(); ++i) { NBTTagCompound nbttagcompound1 = nbttaglist.getCompoundTagAt(i); int j = nbttagcompound1.getByte("Slot") & 255; if (j >= 0 && j < this.contents.length) { this.contents[j] = ItemStack.loadItemStackFromNBT(nbttagcompound1); } } } @Override public void writeToNBT(NBTTagCompound compound) { if (this.hasCustomInventoryName()) { compound.setString("CustomName", this.customName); } NBTTagList nbttaglist = new NBTTagList(); for (int i = 0; i < this.contents.length; ++i) { if (this.contents[i] != null) { NBTTagCompound nbttagcompound1 = new NBTTagCompound(); nbttagcompound1.setByte("Slot", (byte) i); this.contents[i].writeToNBT(nbttagcompound1); nbttaglist.appendTag(nbttagcompound1); } } compound.setTag("Items", nbttaglist); } public Packet getDescriptionPacket() { NBTTagCompound nbttagcompound = new NBTTagCompound(); this.writeToNBT(nbttagcompound); return new S35PacketUpdateTileEntity(this.xCoord, this.yCoord, this.zCoord, 0, nbttagcompound); } public void onDataPacket(NetworkManager net, S35PacketUpdateTileEntity pkt) { this.readFromNBT(pkt.func_148857_g()); } public void increase() { this.number++; } public void decrease() { this.number--; } public int getNumber() { return number; } @Override public int getSizeInventory() { return this.contents.length; } @Override public ItemStack getStackInSlot(int slotIndex) { return this.contents[slotIndex]; } @Override public ItemStack decrStackSize(int slotIndex, int amount) { if (this.contents[slotIndex] != null) { ItemStack itemstack; if (this.contents[slotIndex].stackSize <= amount) { itemstack = this.contents[slotIndex]; this.contents[slotIndex] = null; this.markDirty(); return itemstack; } else { itemstack = this.contents[slotIndex].splitStack(amount); if (this.contents[slotIndex].stackSize == 0) { this.contents[slotIndex] = null; } this.markDirty(); return itemstack; } } else { return null; } } @Override public ItemStack getStackInSlotOnClosing(int slotIndex) { if (this.contents[slotIndex] != null) { ItemStack itemstack = this.contents[slotIndex]; this.contents[slotIndex] = null; return itemstack; } else { return null; } } @Override public void setInventorySlotContents(int slotIndex, ItemStack stack) { this.contents[slotIndex] = stack; if (stack != null && stack.stackSize > this.getInventoryStackLimit()) { stack.stackSize = this.getInventoryStackLimit(); } this.markDirty(); } @Override public String getInventoryName() { return this.hasCustomInventoryName() ? this.customName : "tile.ironchest"; } @Override public boolean hasCustomInventoryName() { return false; } @Override public int getInventoryStackLimit() { return 64; } @Override public boolean isUseableByPlayer(EntityPlayer player) { return this.worldObj.getTileEntity(this.xCoord, this.yCoord, this.zCoord) != this ? false : player.getDistanceSq((double) this.xCoord + 0.5D, (double) this.yCoord + 0.5D, (double) this.zCoord + 0.5D) <= 64.0D; } @Override public void openInventory() { } @Override public void closeInventory() { } @Override public boolean isItemValidForSlot(int slotIndex, ItemStack stack) { return true; } public void setCustomName(String customName) { this.customName = customName; } }
Classe de mon GuiHandler:
package com.mod.destrium; import com.mod.destrium.blocks.TileEntityChest1; import com.mod.init.ContainerIronChest; import com.mod.init.GuiIronChest; import cpw.mods.fml.common.network.IGuiHandler; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.tileentity.TileEntity; import net.minecraft.world.World; public class GuiHandler implements IGuiHandler { @Override public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) { TileEntity tile = world.getTileEntity(x, y, z); if (tile instanceof TileEntityChest1) { return new ContainerIronChest((TileEntityChest1) tile, player.inventory); } return null; } @Override public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) { TileEntity tile = world.getTileEntity(x, y, z); if (tile instanceof TileEntityChest1) { return new GuiIronChest((TileEntityChest1) tile, player.inventory); } return null; } }
Classe de mon Gui:
package com.mod.init; import org.lwjgl.opengl.GL11; import com.mod.destrium.Reference; import com.mod.destrium.blocks.TileEntityChest1; import net.minecraft.client.gui.inventory.GuiContainer; import net.minecraft.client.resources.I18n; import net.minecraft.entity.player.InventoryPlayer; import net.minecraft.inventory.Container; import net.minecraft.inventory.IInventory; import net.minecraft.util.ResourceLocation; public class GuiIronChest extends GuiContainer { private static final ResourceLocation textures = new ResourceLocation(Reference.MOD_ID, "textures/gui/container/ironchest.png"); private TileEntityChest1 tileIronChest; private IInventory playerInv; public GuiIronChest(TileEntityChest1 tile, InventoryPlayer inventory) { super(new ContainerIronChest(tile, inventory)); this.tileIronChest = tile; this.playerInv = inventory; this.allowUserInput = false; this.ySize = 210; } @Override protected void drawGuiContainerBackgroundLayer(float partialRenderTick, int x, int y) { GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F); this.mc.getTextureManager().bindTexture(textures); int k = (this.width - this.xSize) / 2; int l = (this.height - this.ySize) / 4; this.drawTexturedModalRect(k, l, 0, 0, this.xSize, this.ySize); } protected void drawGuiContainerForegroundLayer(int x, int y) { String tileName = this.tileIronChest.hasCustomInventoryName() ? this.tileIronChest.getInventoryName() : I18n.format(this.tileIronChest.getInventoryName()); this.fontRendererObj.drawString(tileName, (this.xSize - this.fontRendererObj.getStringWidth(tileName)) / 2, 24, 0); String invName = this.playerInv.hasCustomInventoryName() ? this.playerInv.getInventoryName() : I18n.format(this.playerInv.getInventoryName()); this.fontRendererObj.drawString(invName, (this.xSize - this.fontRendererObj.getStringWidth(invName)) / 2, this.ySize - 104, 0); } }
Classe de mon Container:
package com.mod.init; import com.mod.destrium.blocks.TileEntityChest1; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.InventoryPlayer; import net.minecraft.inventory.Container; import net.minecraft.inventory.Slot; import net.minecraft.item.ItemStack; public class ContainerIronChest extends Container { private final TileEntityChest1 tileIronChest; @Override public boolean canInteractWith(EntityPlayer player) { return this.tileIronChest.isUseableByPlayer(player); } public ContainerIronChest(TileEntityChest1 tile, InventoryPlayer inventory) { this.tileIronChest = tile; tile.openInventory(); for (int i = 0; i < 4; ++i) { for (int j = 0; j < 9; ++j) { this.addSlotToContainer(new Slot(tile, j + i * 9, 8 + j * 18, 33 + i * 18)); } } this.bindPlayerInventory(inventory); } private void bindPlayerInventory(InventoryPlayer inventory) { int i; for (i = 0; i < 3; ++i) { for (int j = 0; j < 9; ++j) { this.addSlotToContainer(new Slot(inventory, j + i * 9 + 9, 8 + j * 18, 116 + i * 18)); } } for (i = 0; i < 9; ++i) { this.addSlotToContainer(new Slot(inventory, i, 8 + i * 18, 174)); } } public ItemStack transferStackInSlot(EntityPlayer player, int slotIndex) { ItemStack itemstack = null; Slot slot = (Slot) this.inventorySlots.get(slotIndex); if (slot != null && slot.getHasStack()) { ItemStack itemstack1 = slot.getStack(); itemstack = itemstack1.copy(); if (slotIndex < this.tileIronChest.getSizeInventory()) { if (!this.mergeItemStack(itemstack1, this.tileIronChest.getSizeInventory(), this.inventorySlots.size(), true)) { return null; } } else if (!this.mergeItemStack(itemstack1, 0, this.tileIronChest.getSizeInventory(), false)) { return null; } if (itemstack1.stackSize == 0) { slot.putStack((ItemStack) null); } else { slot.onSlotChanged(); } } return itemstack; } public void onContainerClosed(EntityPlayer player) { super.onContainerClosed(player); this.tileIronChest.closeInventory(); } }
Si vous avez besoins d’autre classe dite le moi.
-
Salut,
Un tel problème ne peut que venir du tile entity, vérifies qu’il est bien enregistré. -
Je ne sais pas d’ou peut venir l’erreur moi j’ai sa dans ma classe :
package com.mod.destrium; import com.mod.destrium.blocks.TileEntityChest1; import com.mod.destrium.init.BlockMod; import com.mod.destrium.init.ItemMod; import com.mod.destrium.init.LivingEventHandler; import com.mod.destrium.init.RemoveMod; import com.mod.destrium.proxy.CommonProxy; import com.mod.destrium.world.WorldGenTree; import com.mod.destrium.world.WorldRegister; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.EventHandler; import cpw.mods.fml.common.Mod.Instance; import cpw.mods.fml.common.SidedProxy; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.event.FMLPostInitializationEvent; import cpw.mods.fml.common.event.FMLPreInitializationEvent; import cpw.mods.fml.common.network.NetworkRegistry; import cpw.mods.fml.common.registry.GameRegistry; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; import net.minecraftforge.common.MinecraftForge; @Mod(modid = Reference.MOD_ID, name = Reference.MOD_NAME, version = Reference.VERSION) public class ModDestrium { @SidedProxy(clientSide = Reference.CLIENT_PROXY, serverSide = Reference.SERVER_PROXY) public static CommonProxy proxy; public static CreativeTabs DestriumMod = new CreativeTabs("DestriumMod") { @SideOnly(Side.CLIENT) public Item getTabIconItem() { return ItemMod.AmazoniteIngot; } }; @EventHandler public void preInit(FMLPreInitializationEvent event) { ItemMod.init(); ItemMod.register(); BlockMod.init(); BlockMod.register(); RemoveMod.init(); WorldRegister.mainRegistry(); } @EventHandler public void init(FMLInitializationEvent event) { proxy.registerRenders(); MinecraftForge.EVENT_BUS.register(new LivingEventHandler()); GameRegistry.registerWorldGenerator(new WorldGenTree(), 0); GameRegistry.registerTileEntity(TileEntityChest1.class, Reference.MOD_ID + ":iron_chest"); NetworkRegistry.INSTANCE.registerGuiHandler(instance, new GuiHandler()); } @EventHandler public void postInit(FMLPostInitializationEvent event) { } @Instance("destriummod") public static ModDestrium instance; }
Donc pour moi il est bien enregistré.
-
ça semble bon en effet.
Il n’y a aucune erreur dans les logs ?
-
Si il y a une erreur dans la console quand je lance le jeux mais je ne comprend pas trop
[14:28:45] [main/INFO] [GradleStart]: Extra: [] [14:28:45] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Megaport/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [14:28:45] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [14:28:45] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [14:28:45] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [14:28:45] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [14:28:45] [main/INFO] [FML]: Forge Mod Loader version 7.99.40.1614 for Minecraft 1.7.10 loading [14:28:45] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_201, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_201\jre [14:28:45] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [14:28:45] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [14:28:45] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin [14:28:45] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [14:28:45] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [14:28:45] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [14:28:45] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [14:28:45] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [14:28:45] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [14:28:45] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [14:28:46] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [14:28:51] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [14:28:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [14:28:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [14:28:52] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [14:28:52] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [14:28:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [14:28:52] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [14:28:57] [main/INFO]: Setting user: Player238 [14:29:00] [Client thread/INFO]: LWJGL Version: 2.9.1 [14:29:01] [Client thread/INFO] [STDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- // Who set us up the TNT? Time: 21/07/19 14:29 Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_201, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 798973344 bytes (761 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.5.13497 Compatibility Profile Context 23.20.827.0' Renderer: 'AMD Radeon R7 Graphics' [14:29:01] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [14:29:01] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1614 Initialized [14:29:02] [Client thread/INFO] [FML]: Replaced 183 ore recipies [14:29:02] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [14:29:02] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [14:29:02] [Client thread/INFO] [FML]: Searching C:\Users\Megaport\Desktop\forge-1.7.10\eclipse\mods for mods [14:29:11] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [14:29:12] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, destriummod] at CLIENT [14:29:12] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, destriummod] at SERVER [14:29:13] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Destrium Mod [14:29:13] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [14:29:13] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations [14:29:13] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [14:29:13] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [14:29:13] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [14:29:13] [Client thread/INFO] [FML]: Applying holder lookups [14:29:13] [Client thread/INFO] [FML]: Holder lookups applied [14:29:13] [Client thread/INFO] [FML]: Injecting itemstacks [14:29:13] [Client thread/INFO] [FML]: Itemstack injection complete [14:29:14] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [14:29:14] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [14:29:14] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [14:29:14] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [14:29:14] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [14:29:14] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [14:29:14] [Sound Library Loader/INFO]: Sound engine started [14:29:19] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas [14:29:19] [Client thread/INFO]: Created: 16x16 textures/items-atlas [14:29:19] [Client thread/INFO] [FML]: Injecting itemstacks [14:29:19] [Client thread/INFO] [FML]: Itemstack injection complete [14:29:19] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [14:29:19] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Destrium Mod [14:29:20] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [14:29:20] [Client thread/INFO]: Created: 512x256 textures/items-atlas [14:29:20] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [14:29:20] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [14:29:21] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [14:29:21] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [14:29:21] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [14:29:21] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [14:29:21] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [14:29:21] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [14:29:21] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [14:29:21] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [14:29:21] [Sound Library Loader/INFO]: Sound engine started
-
Rien d’anormal ici.
Par contre tu n’as chargé aucun monde, ça serait bien d’avoir les logs après être entré dans un monde où se trouve ton coffre.
-
Je lance mon jeux créer un monds pose le coffre dedans déco et reco dans mon monde :
[23:28:33] [main/INFO] [GradleStart]: Extra: [] [23:28:34] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Megaport/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [23:28:34] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [23:28:34] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [23:28:34] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [23:28:34] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [23:28:34] [main/INFO] [FML]: Forge Mod Loader version 7.99.40.1614 for Minecraft 1.7.10 loading [23:28:34] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_201, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_201\jre [23:28:35] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [23:28:35] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [23:28:35] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin [23:28:35] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [23:28:35] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [23:28:35] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [23:28:35] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [23:28:35] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [23:28:35] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [23:28:35] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [23:28:37] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [23:28:50] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [23:28:50] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [23:28:50] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [23:28:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [23:28:55] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [23:28:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [23:28:55] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [23:29:03] [main/INFO]: Setting user: Player92 [23:29:12] [Client thread/INFO]: LWJGL Version: 2.9.1 [23:29:16] [Client thread/INFO] [STDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- // You're mean. Time: 21/07/19 23:29 Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_201, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 798635072 bytes (761 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.5.13497 Compatibility Profile Context 23.20.827.0' Renderer: 'AMD Radeon R7 Graphics' [23:29:16] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [23:29:16] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1614 Initialized [23:29:17] [Client thread/INFO] [FML]: Replaced 183 ore recipies [23:29:18] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [23:29:20] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [23:29:20] [Client thread/INFO] [FML]: Searching C:\Users\Megaport\Desktop\forge-1.7.10\eclipse\mods for mods [23:29:47] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [23:29:48] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, destriummod] at CLIENT [23:29:48] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, destriummod] at SERVER [23:29:51] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Destrium Mod [23:29:51] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [23:29:51] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations [23:29:51] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [23:29:51] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [23:29:51] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [23:29:52] [Client thread/INFO] [FML]: Applying holder lookups [23:29:52] [Client thread/INFO] [FML]: Holder lookups applied [23:29:52] [Client thread/INFO] [FML]: Injecting itemstacks [23:29:52] [Client thread/INFO] [FML]: Itemstack injection complete [23:29:53] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [23:29:53] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [23:29:53] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [23:29:53] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [23:29:53] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [23:29:53] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [23:29:53] [Sound Library Loader/INFO]: Sound engine started [23:30:15] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas [23:30:15] [Client thread/INFO]: Created: 16x16 textures/items-atlas [23:30:15] [Client thread/INFO] [FML]: Injecting itemstacks [23:30:15] [Client thread/INFO] [FML]: Itemstack injection complete [23:30:16] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [23:30:16] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Destrium Mod [23:30:22] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [23:30:24] [Client thread/INFO]: Created: 512x256 textures/items-atlas [23:30:24] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [23:30:24] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [23:30:24] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [23:30:24] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [23:30:24] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [23:30:24] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [23:30:24] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [23:30:24] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [23:30:25] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [23:30:25] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [23:30:25] [Sound Library Loader/INFO]: Sound engine started [23:31:41] [Client thread/ERROR]: Exception reading .\saves\Nouveau monde--------------------------\level.dat net.minecraft.util.ReportedException: Loading NBT data at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:503) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagList.func_152446_a(NBTTagList.java:59) ~[NBTTagList.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:179) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.readCompressed(CompressedStreamTools.java:37) ~[CompressedStreamTools.class:?] at net.minecraft.world.storage.SaveFormatOld.getWorldInfo(SaveFormatOld.java:82) [SaveFormatOld.class:?] at net.minecraft.world.chunk.storage.AnvilSaveConverter.getSaveList(AnvilSaveConverter.java:64) [AnvilSaveConverter.class:?] at net.minecraft.client.gui.GuiSelectWorld.func_146627_h(GuiSelectWorld.java:80) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiSelectWorld.initGui(GuiSelectWorld.java:58) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiScreen.setWorldAndResolution(GuiScreen.java:294) [GuiScreen.class:?] at net.minecraft.client.Minecraft.displayGuiScreen(Minecraft.java:865) [Minecraft.class:?] at net.minecraft.client.gui.GuiMainMenu.actionPerformed(GuiMainMenu.java:260) [GuiMainMenu.class:?] at net.minecraft.client.gui.GuiScreen.mouseClicked(GuiScreen.java:252) [GuiScreen.class:?] at net.minecraft.client.gui.GuiMainMenu.mouseClicked(GuiMainMenu.java:566) [GuiMainMenu.class:?] at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:344) [GuiScreen.class:?] at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:313) [GuiScreen.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1731) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_201] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_201] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.util.zip.ZipException: invalid distance too far back at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:164) ~[?:1.8.0_201] at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_201] at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_201] at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_201] at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_201] at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_201] at net.minecraft.nbt.NBTTagString.func_152446_a(NBTTagString.java:38) ~[NBTTagString.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] ... 32 more [23:31:43] [Client thread/ERROR]: Exception reading .\saves\Nouveau monde--------------------------\level.dat net.minecraft.util.ReportedException: Loading NBT data at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:503) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagList.func_152446_a(NBTTagList.java:59) ~[NBTTagList.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:179) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.readCompressed(CompressedStreamTools.java:37) ~[CompressedStreamTools.class:?] at net.minecraft.world.storage.SaveFormatOld.getWorldInfo(SaveFormatOld.java:82) [SaveFormatOld.class:?] at net.minecraft.client.gui.GuiCreateWorld.func_146317_a(GuiCreateWorld.java:169) [GuiCreateWorld.class:?] at net.minecraft.client.gui.GuiCreateWorld.func_146314_g(GuiCreateWorld.java:110) [GuiCreateWorld.class:?] at net.minecraft.client.gui.GuiCreateWorld.initGui(GuiCreateWorld.java:89) [GuiCreateWorld.class:?] at net.minecraft.client.gui.GuiScreen.setWorldAndResolution(GuiScreen.java:294) [GuiScreen.class:?] at net.minecraft.client.Minecraft.displayGuiScreen(Minecraft.java:865) [Minecraft.class:?] at net.minecraft.client.gui.GuiSelectWorld.actionPerformed(GuiSelectWorld.java:137) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiScreen.mouseClicked(GuiScreen.java:252) [GuiScreen.class:?] at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:344) [GuiScreen.class:?] at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:313) [GuiScreen.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1731) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_201] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_201] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.util.zip.ZipException: invalid distance too far back at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:164) ~[?:1.8.0_201] at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_201] at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_201] at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_201] at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_201] at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_201] at net.minecraft.nbt.NBTTagString.func_152446_a(NBTTagString.java:38) ~[NBTTagString.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] ... 31 more [23:31:46] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10 [23:31:46] [Server thread/INFO]: Generating keypair [23:31:47] [Server thread/INFO]: Converting map! [23:31:47] [Server thread/INFO]: Scanning folders... [23:31:47] [Server thread/INFO]: Total conversion count is 0 [23:31:47] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance [23:31:47] [Server thread/INFO] [FML]: Applying holder lookups [23:31:47] [Server thread/INFO] [FML]: Holder lookups applied [23:31:52] [Server thread/INFO] [FML]: Loading dimension 0 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@f6c4294) [23:31:52] [Server thread/INFO] [FML]: Loading dimension 1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@f6c4294) [23:31:52] [Server thread/INFO] [FML]: Loading dimension -1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@f6c4294) [23:31:52] [Server thread/INFO]: Preparing start region for level 0 [23:31:53] [Server thread/INFO]: Preparing spawn area: 7% [23:31:54] [Server thread/INFO]: Preparing spawn area: 15% [23:31:55] [Server thread/INFO]: Preparing spawn area: 24% [23:31:56] [Server thread/INFO]: Preparing spawn area: 34% [23:31:57] [Server thread/INFO]: Preparing spawn area: 47% [23:31:58] [Server thread/INFO]: Preparing spawn area: 59% [23:31:59] [Server thread/INFO]: Preparing spawn area: 69% [23:32:00] [Server thread/INFO]: Preparing spawn area: 80% [23:32:01] [Server thread/INFO]: Preparing spawn area: 93% [23:32:02] [Server thread/INFO]: Changing view distance to 6, from 10 [23:32:04] [Netty Client IO #0/INFO] [FML]: Server protocol version 2 [23:32:04] [Netty IO #1/INFO] [FML]: Client protocol version 2 [23:32:04] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : FML@7.10.99.99,Forge@10.13.4.1614,mcp@9.05,destriummod@2.0.0 [23:32:04] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT [23:32:04] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER [23:32:04] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established [23:32:04] [Server thread/INFO]: Player92[local:E:2bc5898d] logged in with entity id 120 at (277.5, 61.0, 366.5) [23:32:04] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established [23:32:04] [Server thread/INFO]: Player92 a rejoint la partie [23:32:15] [Client thread/INFO]: Warning: Clientside chunk ticking took 158 ms [23:32:15] [Server thread/INFO]: Saving and pausing game... [23:32:15] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld [23:32:20] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether [23:32:20] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End [23:32:21] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 5578ms behind, skipping 111 tick(s) [23:33:04] [Server thread/INFO]: Saving and pausing game... [23:33:04] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld [23:33:04] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether [23:33:04] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End [23:33:07] [Server thread/INFO]: Player92 vient d'obtenir le succès [Faire l'inventaire] [23:33:07] [Client thread/INFO]: [CHAT] Player92 vient d'obtenir le succès [Faire l'inventaire] [23:33:20] [Server thread/INFO]: Saving and pausing game... [23:33:20] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld [23:33:20] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether [23:33:20] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End [23:33:20] [Server thread/INFO]: Stopping server [23:33:20] [Server thread/INFO]: Saving players [23:33:21] [Server thread/INFO]: Saving worlds [23:33:21] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld [23:33:21] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether [23:33:21] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End [23:33:26] [Server thread/INFO] [FML]: Unloading dimension 0 [23:33:26] [Server thread/INFO] [FML]: Unloading dimension -1 [23:33:26] [Server thread/INFO] [FML]: Unloading dimension 1 [23:33:27] [Server thread/INFO] [FML]: Applying holder lookups [23:33:27] [Server thread/INFO] [FML]: Holder lookups applied [23:33:37] [Client thread/ERROR]: Exception reading .\saves\Nouveau monde--------------------------\level.dat net.minecraft.util.ReportedException: Loading NBT data at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:503) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagList.func_152446_a(NBTTagList.java:59) ~[NBTTagList.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:179) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.readCompressed(CompressedStreamTools.java:37) ~[CompressedStreamTools.class:?] at net.minecraft.world.storage.SaveFormatOld.getWorldInfo(SaveFormatOld.java:82) [SaveFormatOld.class:?] at net.minecraft.world.chunk.storage.AnvilSaveConverter.getSaveList(AnvilSaveConverter.java:64) [AnvilSaveConverter.class:?] at net.minecraft.client.gui.GuiSelectWorld.func_146627_h(GuiSelectWorld.java:80) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiSelectWorld.initGui(GuiSelectWorld.java:58) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiScreen.setWorldAndResolution(GuiScreen.java:294) [GuiScreen.class:?] at net.minecraft.client.Minecraft.displayGuiScreen(Minecraft.java:865) [Minecraft.class:?] at net.minecraft.client.gui.GuiMainMenu.actionPerformed(GuiMainMenu.java:260) [GuiMainMenu.class:?] at net.minecraft.client.gui.GuiScreen.mouseClicked(GuiScreen.java:252) [GuiScreen.class:?] at net.minecraft.client.gui.GuiMainMenu.mouseClicked(GuiMainMenu.java:566) [GuiMainMenu.class:?] at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:344) [GuiScreen.class:?] at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:313) [GuiScreen.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1731) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_201] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_201] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.util.zip.ZipException: invalid distance too far back at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:164) ~[?:1.8.0_201] at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_201] at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_201] at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_201] at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_201] at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_201] at net.minecraft.nbt.NBTTagString.func_152446_a(NBTTagString.java:38) ~[NBTTagString.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] ... 32 more [23:33:40] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10 [23:33:40] [Server thread/INFO]: Generating keypair [23:33:41] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance [23:33:41] [Server thread/INFO] [FML]: Applying holder lookups [23:33:41] [Server thread/INFO] [FML]: Holder lookups applied [23:33:41] [Server thread/INFO] [FML]: Loading dimension 0 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@64a2e5a0) [23:33:41] [Server thread/INFO] [FML]: Loading dimension 1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@64a2e5a0) [23:33:41] [Server thread/INFO] [FML]: Loading dimension -1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@64a2e5a0) [23:33:41] [Server thread/INFO]: Preparing start region for level 0 [23:33:42] [Server thread/WARN]: Skipping BlockEntity with id [23:33:42] [Server thread/INFO]: Preparing spawn area: 52% [23:33:42] [Server thread/INFO]: Changing view distance to 6, from 10 [23:33:43] [Netty Client IO #1/INFO] [FML]: Server protocol version 2 [23:33:43] [Netty IO #3/INFO] [FML]: Client protocol version 2 [23:33:43] [Netty IO #3/INFO] [FML]: Client attempting to join with 4 mods : FML@7.10.99.99,Forge@10.13.4.1614,mcp@9.05,destriummod@2.0.0 [23:33:43] [Netty IO #3/INFO] [FML]: Attempting connection with missing mods [] at CLIENT [23:33:43] [Netty Client IO #1/INFO] [FML]: Attempting connection with missing mods [] at SERVER [23:33:43] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established [23:33:43] [Server thread/INFO]: Player92[local:E:35b2143e] logged in with entity id 4390 at (281.8627066912985, 65.96050949839193, 359.0223714959261) [23:33:43] [Server thread/INFO]: Player92 a rejoint la partie [23:33:43] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established [23:34:09] [Server thread/INFO]: Saving and pausing game... [23:34:09] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld [23:34:10] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether [23:34:10] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End
Je fait pareille mais je place un item dans le coffre:
[23:35:15] [main/INFO] [GradleStart]: Extra: [] [23:35:16] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Megaport/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [23:35:16] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [23:35:16] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [23:35:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [23:35:16] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [23:35:17] [main/INFO] [FML]: Forge Mod Loader version 7.99.40.1614 for Minecraft 1.7.10 loading [23:35:17] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_201, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_201\jre [23:35:17] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [23:35:17] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [23:35:17] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin [23:35:17] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [23:35:17] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [23:35:17] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [23:35:17] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [23:35:17] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [23:35:17] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [23:35:17] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [23:35:18] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [23:35:30] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [23:35:30] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [23:35:30] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [23:35:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [23:35:34] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [23:35:34] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [23:35:34] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [23:35:43] [main/INFO]: Setting user: Player53 [23:35:53] [Client thread/INFO]: LWJGL Version: 2.9.1 [23:35:58] [Client thread/INFO] [STDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- // Don't be sad, have a hug! <3 Time: 21/07/19 23:35 Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_201, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 802200216 bytes (765 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.5.13497 Compatibility Profile Context 23.20.827.0' Renderer: 'AMD Radeon R7 Graphics' [23:35:59] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [23:35:59] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1614 Initialized [23:36:00] [Client thread/INFO] [FML]: Replaced 183 ore recipies [23:36:02] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [23:36:05] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [23:36:05] [Client thread/INFO] [FML]: Searching C:\Users\Megaport\Desktop\forge-1.7.10\eclipse\mods for mods [23:36:57] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [23:36:59] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, destriummod] at CLIENT [23:36:59] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, destriummod] at SERVER [23:37:03] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Destrium Mod [23:37:04] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [23:37:04] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations [23:37:04] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [23:37:04] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [23:37:05] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [23:37:06] [Client thread/INFO] [FML]: Applying holder lookups [23:37:06] [Client thread/INFO] [FML]: Holder lookups applied [23:37:06] [Client thread/INFO] [FML]: Injecting itemstacks [23:37:06] [Client thread/INFO] [FML]: Itemstack injection complete [23:37:07] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [23:37:07] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [23:37:08] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [23:37:08] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [23:37:08] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [23:37:08] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [23:37:08] [Sound Library Loader/INFO]: Sound engine started [23:37:27] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas [23:37:27] [Client thread/INFO]: Created: 16x16 textures/items-atlas [23:37:27] [Client thread/INFO] [FML]: Injecting itemstacks [23:37:27] [Client thread/INFO] [FML]: Itemstack injection complete [23:37:28] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [23:37:28] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Destrium Mod [23:37:33] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [23:37:35] [Client thread/INFO]: Created: 512x256 textures/items-atlas [23:37:35] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [23:37:35] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [23:37:35] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [23:37:35] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [23:37:35] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [23:37:35] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [23:37:35] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [23:37:35] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [23:37:35] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [23:37:35] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [23:37:35] [Sound Library Loader/INFO]: Sound engine started [23:39:50] [Client thread/ERROR]: Exception reading .\saves\Nouveau monde--------------------------\level.dat net.minecraft.util.ReportedException: Loading NBT data at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:503) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagList.func_152446_a(NBTTagList.java:59) ~[NBTTagList.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:179) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.readCompressed(CompressedStreamTools.java:37) ~[CompressedStreamTools.class:?] at net.minecraft.world.storage.SaveFormatOld.getWorldInfo(SaveFormatOld.java:82) [SaveFormatOld.class:?] at net.minecraft.world.chunk.storage.AnvilSaveConverter.getSaveList(AnvilSaveConverter.java:64) [AnvilSaveConverter.class:?] at net.minecraft.client.gui.GuiSelectWorld.func_146627_h(GuiSelectWorld.java:80) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiSelectWorld.initGui(GuiSelectWorld.java:58) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiScreen.setWorldAndResolution(GuiScreen.java:294) [GuiScreen.class:?] at net.minecraft.client.Minecraft.displayGuiScreen(Minecraft.java:865) [Minecraft.class:?] at net.minecraft.client.gui.GuiMainMenu.actionPerformed(GuiMainMenu.java:260) [GuiMainMenu.class:?] at net.minecraft.client.gui.GuiScreen.mouseClicked(GuiScreen.java:252) [GuiScreen.class:?] at net.minecraft.client.gui.GuiMainMenu.mouseClicked(GuiMainMenu.java:566) [GuiMainMenu.class:?] at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:344) [GuiScreen.class:?] at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:313) [GuiScreen.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1731) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_201] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_201] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.util.zip.ZipException: invalid distance too far back at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:164) ~[?:1.8.0_201] at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_201] at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_201] at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_201] at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_201] at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_201] at net.minecraft.nbt.NBTTagString.func_152446_a(NBTTagString.java:38) ~[NBTTagString.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] ... 32 more [23:39:51] [Client thread/ERROR]: Exception reading .\saves\Nouveau monde--------------------------\level.dat net.minecraft.util.ReportedException: Loading NBT data at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:503) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagList.func_152446_a(NBTTagList.java:59) ~[NBTTagList.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:179) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.readCompressed(CompressedStreamTools.java:37) ~[CompressedStreamTools.class:?] at net.minecraft.world.storage.SaveFormatOld.getWorldInfo(SaveFormatOld.java:82) [SaveFormatOld.class:?] at net.minecraft.client.gui.GuiCreateWorld.func_146317_a(GuiCreateWorld.java:169) [GuiCreateWorld.class:?] at net.minecraft.client.gui.GuiCreateWorld.func_146314_g(GuiCreateWorld.java:110) [GuiCreateWorld.class:?] at net.minecraft.client.gui.GuiCreateWorld.initGui(GuiCreateWorld.java:89) [GuiCreateWorld.class:?] at net.minecraft.client.gui.GuiScreen.setWorldAndResolution(GuiScreen.java:294) [GuiScreen.class:?] at net.minecraft.client.Minecraft.displayGuiScreen(Minecraft.java:865) [Minecraft.class:?] at net.minecraft.client.gui.GuiSelectWorld.actionPerformed(GuiSelectWorld.java:137) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiScreen.mouseClicked(GuiScreen.java:252) [GuiScreen.class:?] at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:344) [GuiScreen.class:?] at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:313) [GuiScreen.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1731) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_201] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_201] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.util.zip.ZipException: invalid distance too far back at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:164) ~[?:1.8.0_201] at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_201] at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_201] at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_201] at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_201] at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_201] at net.minecraft.nbt.NBTTagString.func_152446_a(NBTTagString.java:38) ~[NBTTagString.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] ... 31 more [23:39:54] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10 [23:39:54] [Server thread/INFO]: Generating keypair [23:39:55] [Server thread/INFO]: Converting map! [23:39:55] [Server thread/INFO]: Scanning folders... [23:39:55] [Server thread/INFO]: Total conversion count is 0 [23:39:55] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance [23:39:55] [Server thread/INFO] [FML]: Applying holder lookups [23:39:55] [Server thread/INFO] [FML]: Holder lookups applied [23:39:56] [Server thread/INFO] [FML]: Loading dimension 0 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@2bdf8499) [23:39:56] [Server thread/INFO] [FML]: Loading dimension 1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@2bdf8499) [23:39:57] [Server thread/INFO] [FML]: Loading dimension -1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@2bdf8499) [23:39:57] [Server thread/INFO]: Preparing start region for level 0 [23:39:58] [Server thread/INFO]: Preparing spawn area: 1% [23:39:59] [Server thread/INFO]: Preparing spawn area: 4% [23:40:00] [Server thread/INFO]: Preparing spawn area: 10% [23:40:01] [Server thread/INFO]: Preparing spawn area: 16% [23:40:02] [Server thread/INFO]: Preparing spawn area: 23% [23:40:03] [Server thread/INFO]: Preparing spawn area: 30% [23:40:04] [Server thread/INFO]: Preparing spawn area: 34% [23:40:05] [Server thread/INFO]: Preparing spawn area: 42% [23:40:06] [Server thread/INFO]: Preparing spawn area: 49% [23:40:07] [Server thread/INFO]: Preparing spawn area: 59% [23:40:08] [Server thread/INFO]: Preparing spawn area: 68% [23:40:09] [Server thread/INFO]: Preparing spawn area: 77% [23:40:10] [Server thread/INFO]: Preparing spawn area: 88% [23:40:11] [Server thread/INFO]: Changing view distance to 6, from 10 [23:40:13] [Netty Client IO #0/INFO] [FML]: Server protocol version 2 [23:40:13] [Netty IO #1/INFO] [FML]: Client protocol version 2 [23:40:13] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : FML@7.10.99.99,Forge@10.13.4.1614,mcp@9.05,destriummod@2.0.0 [23:40:13] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT [23:40:13] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER [23:40:13] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established [23:40:13] [Server thread/INFO]: Player53[local:E:a0b09dd0] logged in with entity id 217 at (-246.5, 71.0, 82.5) [23:40:13] [Server thread/INFO]: Player53 a rejoint la partie [23:40:13] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established [23:40:16] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2368ms behind, skipping 47 tick(s) [23:40:19] [Client thread/INFO]: Warning: Clientside chunk ticking took 250 ms [23:40:19] [Client thread/INFO]: Warning: Clientside chunk ticking took 207 ms [23:40:19] [Client thread/INFO]: Warning: Clientside chunk ticking took 106 ms [23:40:20] [Client thread/INFO]: Warning: Clientside chunk ticking took 134 ms [23:40:20] [Client thread/INFO]: Warning: Clientside chunk ticking took 204 ms [23:40:20] [Client thread/INFO]: Warning: Clientside chunk ticking took 166 ms [23:40:20] [Client thread/INFO]: Warning: Clientside chunk ticking took 129 ms [23:40:22] [Client thread/INFO]: Warning: Clientside chunk ticking took 111 ms [23:40:22] [Client thread/INFO]: Warning: Clientside chunk ticking took 113 ms [23:40:22] [Client thread/INFO]: Warning: Clientside chunk ticking took 126 ms [23:40:22] [Client thread/INFO]: Warning: Clientside chunk ticking took 117 ms [23:40:53] [Server thread/INFO]: Player53 vient d'obtenir le succès [Faire l'inventaire] [23:40:54] [Client thread/INFO]: [CHAT] Player53 vient d'obtenir le succès [Faire l'inventaire] [23:41:05] [Server thread/INFO]: Saving and pausing game... [23:41:05] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld [23:41:05] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether [23:41:05] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End [23:41:06] [Server thread/INFO]: Stopping server [23:41:06] [Server thread/INFO]: Saving players [23:41:06] [Server thread/INFO]: Saving worlds [23:41:06] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld [23:41:06] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether [23:41:06] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End [23:41:10] [Server thread/INFO] [FML]: Unloading dimension 0 [23:41:10] [Server thread/INFO] [FML]: Unloading dimension -1 [23:41:10] [Server thread/INFO] [FML]: Unloading dimension 1 [23:41:10] [Server thread/INFO] [FML]: Applying holder lookups [23:41:11] [Server thread/INFO] [FML]: Holder lookups applied [23:41:12] [Client thread/ERROR]: Exception reading .\saves\Nouveau monde--------------------------\level.dat net.minecraft.util.ReportedException: Loading NBT data at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:503) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagList.func_152446_a(NBTTagList.java:59) ~[NBTTagList.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:179) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.readCompressed(CompressedStreamTools.java:37) ~[CompressedStreamTools.class:?] at net.minecraft.world.storage.SaveFormatOld.getWorldInfo(SaveFormatOld.java:82) [SaveFormatOld.class:?] at net.minecraft.world.chunk.storage.AnvilSaveConverter.getSaveList(AnvilSaveConverter.java:64) [AnvilSaveConverter.class:?] at net.minecraft.client.gui.GuiSelectWorld.func_146627_h(GuiSelectWorld.java:80) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiSelectWorld.initGui(GuiSelectWorld.java:58) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiScreen.setWorldAndResolution(GuiScreen.java:294) [GuiScreen.class:?] at net.minecraft.client.Minecraft.displayGuiScreen(Minecraft.java:865) [Minecraft.class:?] at net.minecraft.client.gui.GuiMainMenu.actionPerformed(GuiMainMenu.java:260) [GuiMainMenu.class:?] at net.minecraft.client.gui.GuiScreen.mouseClicked(GuiScreen.java:252) [GuiScreen.class:?] at net.minecraft.client.gui.GuiMainMenu.mouseClicked(GuiMainMenu.java:566) [GuiMainMenu.class:?] at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:344) [GuiScreen.class:?] at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:313) [GuiScreen.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1731) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_201] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_201] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.util.zip.ZipException: invalid distance too far back at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:164) ~[?:1.8.0_201] at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_201] at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_201] at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_201] at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_201] at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_201] at net.minecraft.nbt.NBTTagString.func_152446_a(NBTTagString.java:38) ~[NBTTagString.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] ... 32 more [23:41:15] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10 [23:41:15] [Server thread/INFO]: Generating keypair [23:41:15] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance [23:41:15] [Server thread/INFO] [FML]: Applying holder lookups [23:41:15] [Server thread/INFO] [FML]: Holder lookups applied [23:41:15] [Server thread/INFO] [FML]: Loading dimension 0 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@58557ce3) [23:41:15] [Server thread/INFO] [FML]: Loading dimension 1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@58557ce3) [23:41:15] [Server thread/INFO] [FML]: Loading dimension -1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@58557ce3) [23:41:15] [Server thread/INFO]: Preparing start region for level 0 [23:41:16] [Server thread/WARN]: Skipping BlockEntity with id [23:41:16] [Server thread/INFO]: Preparing spawn area: 75% [23:41:16] [Server thread/INFO]: Changing view distance to 6, from 10 [23:41:16] [Netty Client IO #1/INFO] [FML]: Server protocol version 2 [23:41:16] [Netty IO #3/INFO] [FML]: Client protocol version 2 [23:41:16] [Netty IO #3/INFO] [FML]: Client attempting to join with 4 mods : FML@7.10.99.99,Forge@10.13.4.1614,mcp@9.05,destriummod@2.0.0 [23:41:16] [Netty IO #3/INFO] [FML]: Attempting connection with missing mods [] at CLIENT [23:41:16] [Netty Client IO #1/INFO] [FML]: Attempting connection with missing mods [] at SERVER [23:41:16] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established [23:41:16] [Server thread/INFO]: Player53[local:E:1808f99f] logged in with entity id 5104 at (-246.5, 71.0, 82.5) [23:41:16] [Server thread/INFO]: Player53 a rejoint la partie [23:41:16] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established
-
Visiblement il y a un souci avec des fonctions en rapport avec les NBT, mais ça semble concerner le fichier level.dat et non ton tile entity.
Essaies de créer un nouveau monde.
-
Dans Les Logs Que Je T’Est Envoyé J’Avais Créé Un Nouveau Monde. (Et Désolé Du Retard De La Réponse)
-
Hum dans ce cas je ne vois pas du tout d’où peut venir ton problème
Tu modifies le nbt de level.dat quelque part ?
Si tu vides le contenu des fonctions readFromNBT et writeToNBT de ton tile entity, l’erreur apparait toujours ?
-
Je ne sais pas si j ai modifié le nbt de lvl.dat quelque part mais j ai tous fait comme dans le tutoriel et quand je vide le contenu des fonctions readFromNBT et writeToNBT rien ne change les objets disparaisse toujours après un déco reco.
(Je vien de rentrer de vacance donc je n’était pas la avant) -
Oui normal qu’en retirant le contenu de readFromNBT et writeToNBT le coffre soit vide, la question c’est est-ce qu’il y a encore l’erreur dans les logs à propos du fichier level.dat ?
-
Avec les fonctions readFromNBT et writeToNTB remplie :
[21:24:25] [main/INFO] [GradleStart]: Extra: [] [21:24:26] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Megaport/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [21:24:26] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [21:24:26] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [21:24:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [21:24:27] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [21:24:27] [main/INFO] [FML]: Forge Mod Loader version 7.99.40.1614 for Minecraft 1.7.10 loading [21:24:27] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_201, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_201\jre [21:24:27] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [21:24:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [21:24:27] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin [21:24:27] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [21:24:27] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [21:24:27] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [21:24:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [21:24:27] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [21:24:27] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [21:24:27] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [21:24:31] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [21:24:42] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [21:24:42] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [21:24:42] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [21:24:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [21:24:46] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [21:24:46] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [21:24:46] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [21:24:52] [main/INFO]: Setting user: Player971 [21:25:00] [Client thread/INFO]: LWJGL Version: 2.9.1 [21:25:04] [Client thread/INFO] [STDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- // Would you like a cupcake? Time: 28/07/19 21:25 Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_201, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 801799584 bytes (764 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.5.13497 Compatibility Profile Context 23.20.827.0' Renderer: 'AMD Radeon R7 Graphics' [21:25:04] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [21:25:04] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1614 Initialized [21:25:05] [Client thread/INFO] [FML]: Replaced 183 ore recipies [21:25:06] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [21:25:07] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [21:25:07] [Client thread/INFO] [FML]: Searching C:\Users\Megaport\Desktop\forge-1.7.10\eclipse\mods for mods [21:25:27] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [21:25:29] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, destriummod] at CLIENT [21:25:29] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, destriummod] at SERVER [21:25:30] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Destrium Mod [21:25:31] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [21:25:31] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations [21:25:31] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [21:25:31] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [21:25:31] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [21:25:32] [Client thread/INFO] [FML]: Applying holder lookups [21:25:32] [Client thread/INFO] [FML]: Holder lookups applied [21:25:32] [Client thread/INFO] [FML]: Injecting itemstacks [21:25:32] [Client thread/INFO] [FML]: Itemstack injection complete [21:25:32] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:25:32] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [21:25:32] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [21:25:32] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [21:25:33] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [21:25:33] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:25:33] [Sound Library Loader/INFO]: Sound engine started [21:25:49] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas [21:25:49] [Client thread/INFO]: Created: 16x16 textures/items-atlas [21:25:49] [Client thread/INFO] [FML]: Injecting itemstacks [21:25:49] [Client thread/INFO] [FML]: Itemstack injection complete [21:25:50] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [21:25:50] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Destrium Mod [21:25:52] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [21:25:53] [Client thread/INFO]: Created: 512x256 textures/items-atlas [21:25:53] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:25:53] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [21:25:53] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [21:25:53] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:25:53] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:25:53] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [21:25:53] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [21:25:53] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [21:25:54] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [21:25:54] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:25:54] [Sound Library Loader/INFO]: Sound engine started
Avec les fonctions readFromNBT et writeToNBT vide :
[21:31:16] [main/INFO] [GradleStart]: Extra: [] [21:31:18] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Megaport/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [21:31:18] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [21:31:18] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [21:31:18] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [21:31:18] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [21:31:18] [main/INFO] [FML]: Forge Mod Loader version 7.99.40.1614 for Minecraft 1.7.10 loading [21:31:18] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_201, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_201\jre [21:31:18] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [21:31:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [21:31:19] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin [21:31:19] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [21:31:19] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [21:31:19] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [21:31:19] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [21:31:19] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [21:31:19] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [21:31:19] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [21:31:22] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [21:31:53] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [21:31:53] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [21:31:53] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [21:31:57] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [21:31:57] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [21:31:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [21:31:57] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [21:32:05] [main/INFO]: Setting user: Player306 [21:32:11] [Client thread/INFO]: LWJGL Version: 2.9.1 [21:32:15] [Client thread/INFO] [STDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- // You're mean. Time: 28/07/19 21:32 Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_201, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 798574600 bytes (761 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.5.13497 Compatibility Profile Context 23.20.827.0' Renderer: 'AMD Radeon R7 Graphics' [21:32:15] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [21:32:15] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1614 Initialized [21:32:16] [Client thread/INFO] [FML]: Replaced 183 ore recipies [21:32:17] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [21:32:19] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [21:32:19] [Client thread/INFO] [FML]: Searching C:\Users\Megaport\Desktop\forge-1.7.10\eclipse\mods for mods [21:32:54] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [21:32:57] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, destriummod] at CLIENT [21:32:57] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, destriummod] at SERVER [21:32:59] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Destrium Mod [21:33:00] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [21:33:00] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations [21:33:00] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [21:33:00] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [21:33:01] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [21:33:02] [Client thread/INFO] [FML]: Applying holder lookups [21:33:02] [Client thread/INFO] [FML]: Holder lookups applied [21:33:02] [Client thread/INFO] [FML]: Injecting itemstacks [21:33:02] [Client thread/INFO] [FML]: Itemstack injection complete [21:33:03] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:33:03] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [21:33:03] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [21:33:03] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [21:33:04] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [21:33:04] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:33:04] [Sound Library Loader/INFO]: Sound engine started [21:33:30] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas [21:33:31] [Client thread/INFO]: Created: 16x16 textures/items-atlas [21:33:31] [Client thread/INFO] [FML]: Injecting itemstacks [21:33:31] [Client thread/INFO] [FML]: Itemstack injection complete [21:33:31] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [21:33:31] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Destrium Mod [21:33:33] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [21:33:34] [Client thread/INFO]: Created: 512x256 textures/items-atlas [21:33:34] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:33:34] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [21:33:34] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [21:33:34] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:33:34] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:33:34] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [21:33:34] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [21:33:34] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [21:33:35] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [21:33:35] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:33:35] [Sound Library Loader/INFO]: Sound engine started
-
Il n’y a pas de chargement de monde dans ces logs …
-
Oui sais vrai que sans charger un monde c est inutile désolé.
Donc j’ai créer un nouveau monde posé mon blocs dedans j ai mit de la stone dans le coffre et j ai déco reco (avec readFromNBT et writeToNBT remplie) :[21:46:56] [main/INFO] [GradleStart]: Extra: [] [21:46:57] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Megaport/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [21:46:57] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [21:46:57] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [21:46:57] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [21:46:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [21:46:57] [main/INFO] [FML]: Forge Mod Loader version 7.99.40.1614 for Minecraft 1.7.10 loading [21:46:57] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_201, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_201\jre [21:46:57] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [21:46:57] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [21:46:57] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin [21:46:57] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [21:46:57] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [21:46:57] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [21:46:57] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [21:46:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [21:46:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [21:46:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [21:46:58] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [21:47:04] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [21:47:04] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [21:47:04] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [21:47:06] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [21:47:06] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [21:47:06] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [21:47:06] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [21:47:11] [main/INFO]: Setting user: Player956 [21:47:16] [Client thread/INFO]: LWJGL Version: 2.9.1 [21:47:18] [Client thread/INFO] [STDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- // Ouch. That hurt :( Time: 28/07/19 21:47 Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_201, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 798686640 bytes (761 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.5.13497 Compatibility Profile Context 23.20.827.0' Renderer: 'AMD Radeon R7 Graphics' [21:47:18] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [21:47:18] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1614 Initialized [21:47:18] [Client thread/INFO] [FML]: Replaced 183 ore recipies [21:47:19] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [21:47:20] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [21:47:20] [Client thread/INFO] [FML]: Searching C:\Users\Megaport\Desktop\forge-1.7.10\eclipse\mods for mods [21:47:36] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [21:47:37] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, destriummod] at CLIENT [21:47:37] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, destriummod] at SERVER [21:47:38] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Destrium Mod [21:47:39] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [21:47:39] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations [21:47:39] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [21:47:39] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [21:47:39] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [21:47:40] [Client thread/INFO] [FML]: Applying holder lookups [21:47:40] [Client thread/INFO] [FML]: Holder lookups applied [21:47:40] [Client thread/INFO] [FML]: Injecting itemstacks [21:47:40] [Client thread/INFO] [FML]: Itemstack injection complete [21:47:40] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:47:40] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [21:47:40] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [21:47:40] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [21:47:41] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [21:47:41] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:47:41] [Sound Library Loader/INFO]: Sound engine started [21:47:49] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas [21:47:49] [Client thread/INFO]: Created: 16x16 textures/items-atlas [21:47:49] [Client thread/INFO] [FML]: Injecting itemstacks [21:47:49] [Client thread/INFO] [FML]: Itemstack injection complete [21:47:50] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [21:47:50] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Destrium Mod [21:47:52] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [21:47:53] [Client thread/INFO]: Created: 512x256 textures/items-atlas [21:47:53] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:47:53] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [21:47:54] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [21:47:54] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:47:54] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:47:54] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [21:47:54] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [21:47:54] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [21:47:54] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [21:47:54] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:47:54] [Sound Library Loader/INFO]: Sound engine started [21:48:52] [Client thread/ERROR]: Exception reading .\saves\Nouveau monde--------------------------\level.dat net.minecraft.util.ReportedException: Loading NBT data at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:503) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagList.func_152446_a(NBTTagList.java:59) ~[NBTTagList.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:179) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.readCompressed(CompressedStreamTools.java:37) ~[CompressedStreamTools.class:?] at net.minecraft.world.storage.SaveFormatOld.getWorldInfo(SaveFormatOld.java:82) [SaveFormatOld.class:?] at net.minecraft.world.chunk.storage.AnvilSaveConverter.getSaveList(AnvilSaveConverter.java:64) [AnvilSaveConverter.class:?] at net.minecraft.client.gui.GuiSelectWorld.func_146627_h(GuiSelectWorld.java:80) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiSelectWorld.initGui(GuiSelectWorld.java:58) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiScreen.setWorldAndResolution(GuiScreen.java:294) [GuiScreen.class:?] at net.minecraft.client.Minecraft.displayGuiScreen(Minecraft.java:865) [Minecraft.class:?] at net.minecraft.client.gui.GuiMainMenu.actionPerformed(GuiMainMenu.java:260) [GuiMainMenu.class:?] at net.minecraft.client.gui.GuiScreen.mouseClicked(GuiScreen.java:252) [GuiScreen.class:?] at net.minecraft.client.gui.GuiMainMenu.mouseClicked(GuiMainMenu.java:566) [GuiMainMenu.class:?] at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:344) [GuiScreen.class:?] at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:313) [GuiScreen.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1731) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_201] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_201] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.util.zip.ZipException: invalid distance too far back at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:164) ~[?:1.8.0_201] at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_201] at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_201] at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_201] at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_201] at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_201] at net.minecraft.nbt.NBTTagString.func_152446_a(NBTTagString.java:38) ~[NBTTagString.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] ... 32 more [21:48:54] [Client thread/ERROR]: Exception reading .\saves\Nouveau monde--------------------------\level.dat net.minecraft.util.ReportedException: Loading NBT data at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:503) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagList.func_152446_a(NBTTagList.java:59) ~[NBTTagList.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:179) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.readCompressed(CompressedStreamTools.java:37) ~[CompressedStreamTools.class:?] at net.minecraft.world.storage.SaveFormatOld.getWorldInfo(SaveFormatOld.java:82) [SaveFormatOld.class:?] at net.minecraft.client.gui.GuiCreateWorld.func_146317_a(GuiCreateWorld.java:169) [GuiCreateWorld.class:?] at net.minecraft.client.gui.GuiCreateWorld.func_146314_g(GuiCreateWorld.java:110) [GuiCreateWorld.class:?] at net.minecraft.client.gui.GuiCreateWorld.initGui(GuiCreateWorld.java:89) [GuiCreateWorld.class:?] at net.minecraft.client.gui.GuiScreen.setWorldAndResolution(GuiScreen.java:294) [GuiScreen.class:?] at net.minecraft.client.Minecraft.displayGuiScreen(Minecraft.java:865) [Minecraft.class:?] at net.minecraft.client.gui.GuiSelectWorld.actionPerformed(GuiSelectWorld.java:137) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiScreen.mouseClicked(GuiScreen.java:252) [GuiScreen.class:?] at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:344) [GuiScreen.class:?] at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:313) [GuiScreen.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1731) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_201] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_201] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.util.zip.ZipException: invalid distance too far back at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:164) ~[?:1.8.0_201] at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_201] at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_201] at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_201] at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_201] at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_201] at net.minecraft.nbt.NBTTagString.func_152446_a(NBTTagString.java:38) ~[NBTTagString.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] ... 31 more [21:48:58] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10 [21:48:58] [Server thread/INFO]: Generating keypair [21:48:58] [Server thread/INFO]: Converting map! [21:48:58] [Server thread/INFO]: Scanning folders... [21:48:58] [Server thread/INFO]: Total conversion count is 0 [21:48:58] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance [21:48:58] [Server thread/INFO] [FML]: Applying holder lookups [21:48:58] [Server thread/INFO] [FML]: Holder lookups applied [21:48:59] [Server thread/INFO] [FML]: Loading dimension 0 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@3097637c) [21:48:59] [Server thread/INFO] [FML]: Loading dimension 1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@3097637c) [21:49:00] [Server thread/INFO] [FML]: Loading dimension -1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@3097637c) [21:49:00] [Server thread/INFO]: Preparing start region for level 0 [21:49:01] [Server thread/INFO]: Preparing spawn area: 5% [21:49:02] [Server thread/INFO]: Preparing spawn area: 12% [21:49:03] [Server thread/INFO]: Preparing spawn area: 16% [21:49:04] [Server thread/INFO]: Preparing spawn area: 24% [21:49:05] [Server thread/INFO]: Preparing spawn area: 34% [21:49:06] [Server thread/INFO]: Preparing spawn area: 41% [21:49:07] [Server thread/INFO]: Preparing spawn area: 50% [21:49:08] [Server thread/INFO]: Preparing spawn area: 60% [21:49:09] [Server thread/INFO]: Preparing spawn area: 68% [21:49:10] [Server thread/INFO]: Preparing spawn area: 78% [21:49:11] [Server thread/INFO]: Preparing spawn area: 88% [21:49:12] [Server thread/INFO]: Preparing spawn area: 98% [21:49:12] [Server thread/INFO]: Changing view distance to 4, from 10 [21:49:14] [Netty Client IO #0/INFO] [FML]: Server protocol version 2 [21:49:14] [Netty IO #1/INFO] [FML]: Client protocol version 2 [21:49:14] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : FML@7.10.99.99,Forge@10.13.4.1614,mcp@9.05,destriummod@2.0.0 [21:49:14] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT [21:49:14] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER [21:49:14] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established [21:49:14] [Server thread/INFO]: Player956[local:E:e5dcf030] logged in with entity id 504 at (265.5, 72.0, -224.5) [21:49:14] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established [21:49:14] [Server thread/INFO]: Player956 a rejoint la partie [21:49:18] [Server thread/INFO]: Player956 vient d'obtenir le succès [Faire l'inventaire] [21:49:18] [Client thread/INFO]: [CHAT] Player956 vient d'obtenir le succès [Faire l'inventaire] [21:49:32] [Server thread/INFO]: Saving and pausing game... [21:49:32] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld [21:49:32] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether [21:49:32] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End [21:49:32] [Server thread/INFO]: Stopping server [21:49:32] [Server thread/INFO]: Saving players [21:49:32] [Server thread/INFO]: Saving worlds [21:49:32] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld [21:49:33] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether [21:49:33] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End [21:49:36] [Server thread/INFO] [FML]: Unloading dimension 0 [21:49:36] [Server thread/INFO] [FML]: Unloading dimension -1 [21:49:36] [Server thread/INFO] [FML]: Unloading dimension 1 [21:49:36] [Server thread/INFO] [FML]: Applying holder lookups [21:49:36] [Server thread/INFO] [FML]: Holder lookups applied [21:49:39] [Client thread/ERROR]: Exception reading .\saves\Nouveau monde--------------------------\level.dat net.minecraft.util.ReportedException: Loading NBT data at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:503) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagList.func_152446_a(NBTTagList.java:59) ~[NBTTagList.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:179) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.readCompressed(CompressedStreamTools.java:37) ~[CompressedStreamTools.class:?] at net.minecraft.world.storage.SaveFormatOld.getWorldInfo(SaveFormatOld.java:82) [SaveFormatOld.class:?] at net.minecraft.world.chunk.storage.AnvilSaveConverter.getSaveList(AnvilSaveConverter.java:64) [AnvilSaveConverter.class:?] at net.minecraft.client.gui.GuiSelectWorld.func_146627_h(GuiSelectWorld.java:80) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiSelectWorld.initGui(GuiSelectWorld.java:58) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiScreen.setWorldAndResolution(GuiScreen.java:294) [GuiScreen.class:?] at net.minecraft.client.Minecraft.displayGuiScreen(Minecraft.java:865) [Minecraft.class:?] at net.minecraft.client.gui.GuiMainMenu.actionPerformed(GuiMainMenu.java:260) [GuiMainMenu.class:?] at net.minecraft.client.gui.GuiScreen.mouseClicked(GuiScreen.java:252) [GuiScreen.class:?] at net.minecraft.client.gui.GuiMainMenu.mouseClicked(GuiMainMenu.java:566) [GuiMainMenu.class:?] at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:344) [GuiScreen.class:?] at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:313) [GuiScreen.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1731) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_201] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_201] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.util.zip.ZipException: invalid distance too far back at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:164) ~[?:1.8.0_201] at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_201] at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_201] at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_201] at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_201] at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_201] at net.minecraft.nbt.NBTTagString.func_152446_a(NBTTagString.java:38) ~[NBTTagString.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] ... 32 more [21:49:42] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10 [21:49:42] [Server thread/INFO]: Generating keypair [21:49:42] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance [21:49:42] [Server thread/INFO] [FML]: Applying holder lookups [21:49:42] [Server thread/INFO] [FML]: Holder lookups applied [21:49:42] [Server thread/INFO] [FML]: Loading dimension 0 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@7a151d81) [21:49:42] [Server thread/INFO] [FML]: Loading dimension 1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@7a151d81) [21:49:42] [Server thread/INFO] [FML]: Loading dimension -1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@7a151d81) [21:49:42] [Server thread/INFO]: Preparing start region for level 0 [21:49:42] [Server thread/WARN]: Skipping BlockEntity with id [21:49:43] [Server thread/INFO]: Changing view distance to 4, from 10 [21:49:43] [Netty Client IO #1/INFO] [FML]: Server protocol version 2 [21:49:43] [Netty IO #3/INFO] [FML]: Client protocol version 2 [21:49:43] [Netty IO #3/INFO] [FML]: Client attempting to join with 4 mods : FML@7.10.99.99,Forge@10.13.4.1614,mcp@9.05,destriummod@2.0.0 [21:49:43] [Netty IO #3/INFO] [FML]: Attempting connection with missing mods [] at CLIENT [21:49:43] [Netty Client IO #1/INFO] [FML]: Attempting connection with missing mods [] at SERVER [21:49:43] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established [21:49:43] [Server thread/INFO]: Player956[local:E:c60f5153] logged in with entity id 5021 at (265.5, 72.0, -224.5) [21:49:43] [Server thread/INFO]: Player956 a rejoint la partie [21:49:43] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established
La je fait pareil mais avec les fonctions readFromNBT et writeToNBT vide :
[21:52:18] [main/INFO] [GradleStart]: Extra: [] [21:52:19] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Megaport/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [21:52:19] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [21:52:19] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [21:52:19] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [21:52:19] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [21:52:19] [main/INFO] [FML]: Forge Mod Loader version 7.99.40.1614 for Minecraft 1.7.10 loading [21:52:19] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_201, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_201\jre [21:52:19] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [21:52:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [21:52:19] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin [21:52:19] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [21:52:19] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [21:52:19] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [21:52:19] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [21:52:19] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [21:52:19] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [21:52:19] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [21:52:20] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [21:52:26] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [21:52:26] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [21:52:26] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [21:52:29] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [21:52:29] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [21:52:29] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [21:52:29] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [21:52:33] [main/INFO]: Setting user: Player299 [21:52:37] [Client thread/INFO]: LWJGL Version: 2.9.1 [21:52:40] [Client thread/INFO] [STDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- // Ooh. Shiny. Time: 28/07/19 21:52 Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_201, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 798881104 bytes (761 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.5.13497 Compatibility Profile Context 23.20.827.0' Renderer: 'AMD Radeon R7 Graphics' [21:52:40] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [21:52:40] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1614 Initialized [21:52:40] [Client thread/INFO] [FML]: Replaced 183 ore recipies [21:52:40] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [21:52:42] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [21:52:42] [Client thread/INFO] [FML]: Searching C:\Users\Megaport\Desktop\forge-1.7.10\eclipse\mods for mods [21:52:55] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [21:52:56] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, destriummod] at CLIENT [21:52:56] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, destriummod] at SERVER [21:52:57] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Destrium Mod [21:52:57] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [21:52:57] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations [21:52:57] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [21:52:57] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [21:52:57] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [21:52:58] [Client thread/INFO] [FML]: Applying holder lookups [21:52:58] [Client thread/INFO] [FML]: Holder lookups applied [21:52:58] [Client thread/INFO] [FML]: Injecting itemstacks [21:52:58] [Client thread/INFO] [FML]: Itemstack injection complete [21:52:58] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:52:58] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [21:52:58] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [21:52:58] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [21:52:58] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [21:52:58] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:52:58] [Sound Library Loader/INFO]: Sound engine started [21:53:04] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas [21:53:04] [Client thread/INFO]: Created: 16x16 textures/items-atlas [21:53:04] [Client thread/INFO] [FML]: Injecting itemstacks [21:53:04] [Client thread/INFO] [FML]: Itemstack injection complete [21:53:05] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [21:53:05] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Destrium Mod [21:53:06] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [21:53:06] [Client thread/INFO]: Created: 512x256 textures/items-atlas [21:53:06] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:53:06] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [21:53:06] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [21:53:06] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:53:06] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:53:06] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [21:53:07] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [21:53:07] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [21:53:07] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [21:53:07] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:53:07] [Sound Library Loader/INFO]: Sound engine started [21:57:44] [Client thread/ERROR]: Exception reading .\saves\Nouveau monde--------------------------\level.dat net.minecraft.util.ReportedException: Loading NBT data at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:503) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagList.func_152446_a(NBTTagList.java:59) ~[NBTTagList.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:179) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.readCompressed(CompressedStreamTools.java:37) ~[CompressedStreamTools.class:?] at net.minecraft.world.storage.SaveFormatOld.getWorldInfo(SaveFormatOld.java:82) [SaveFormatOld.class:?] at net.minecraft.world.chunk.storage.AnvilSaveConverter.getSaveList(AnvilSaveConverter.java:64) [AnvilSaveConverter.class:?] at net.minecraft.client.gui.GuiSelectWorld.func_146627_h(GuiSelectWorld.java:80) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiSelectWorld.initGui(GuiSelectWorld.java:58) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiScreen.setWorldAndResolution(GuiScreen.java:294) [GuiScreen.class:?] at net.minecraft.client.Minecraft.displayGuiScreen(Minecraft.java:865) [Minecraft.class:?] at net.minecraft.client.gui.GuiMainMenu.actionPerformed(GuiMainMenu.java:260) [GuiMainMenu.class:?] at net.minecraft.client.gui.GuiScreen.mouseClicked(GuiScreen.java:252) [GuiScreen.class:?] at net.minecraft.client.gui.GuiMainMenu.mouseClicked(GuiMainMenu.java:566) [GuiMainMenu.class:?] at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:344) [GuiScreen.class:?] at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:313) [GuiScreen.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1731) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_201] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_201] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.util.zip.ZipException: invalid distance too far back at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:164) ~[?:1.8.0_201] at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_201] at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_201] at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_201] at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_201] at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_201] at net.minecraft.nbt.NBTTagString.func_152446_a(NBTTagString.java:38) ~[NBTTagString.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] ... 32 more [21:57:47] [Client thread/ERROR]: Exception reading .\saves\Nouveau monde--------------------------\level.dat net.minecraft.util.ReportedException: Loading NBT data at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:503) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagList.func_152446_a(NBTTagList.java:59) ~[NBTTagList.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:179) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.readCompressed(CompressedStreamTools.java:37) ~[CompressedStreamTools.class:?] at net.minecraft.world.storage.SaveFormatOld.getWorldInfo(SaveFormatOld.java:82) [SaveFormatOld.class:?] at net.minecraft.client.gui.GuiCreateWorld.func_146317_a(GuiCreateWorld.java:169) [GuiCreateWorld.class:?] at net.minecraft.client.gui.GuiCreateWorld.func_146314_g(GuiCreateWorld.java:110) [GuiCreateWorld.class:?] at net.minecraft.client.gui.GuiCreateWorld.initGui(GuiCreateWorld.java:89) [GuiCreateWorld.class:?] at net.minecraft.client.gui.GuiScreen.setWorldAndResolution(GuiScreen.java:294) [GuiScreen.class:?] at net.minecraft.client.Minecraft.displayGuiScreen(Minecraft.java:865) [Minecraft.class:?] at net.minecraft.client.gui.GuiSelectWorld.actionPerformed(GuiSelectWorld.java:137) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiScreen.mouseClicked(GuiScreen.java:252) [GuiScreen.class:?] at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:344) [GuiScreen.class:?] at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:313) [GuiScreen.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1731) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_201] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_201] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.util.zip.ZipException: invalid distance too far back at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:164) ~[?:1.8.0_201] at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_201] at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_201] at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_201] at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_201] at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_201] at net.minecraft.nbt.NBTTagString.func_152446_a(NBTTagString.java:38) ~[NBTTagString.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] ... 31 more [21:57:50] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10 [21:57:50] [Server thread/INFO]: Generating keypair [21:57:51] [Server thread/INFO]: Converting map! [21:57:51] [Server thread/INFO]: Scanning folders... [21:57:51] [Server thread/INFO]: Total conversion count is 0 [21:57:51] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance [21:57:51] [Server thread/INFO] [FML]: Applying holder lookups [21:57:51] [Server thread/INFO] [FML]: Holder lookups applied [21:57:52] [Server thread/INFO] [FML]: Loading dimension 0 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@584b2c8f) [21:57:52] [Server thread/INFO] [FML]: Loading dimension 1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@584b2c8f) [21:57:52] [Server thread/INFO] [FML]: Loading dimension -1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@584b2c8f) [21:57:52] [Server thread/INFO]: Preparing start region for level 0 [21:57:53] [Server thread/INFO]: Preparing spawn area: 4% [21:57:54] [Server thread/INFO]: Preparing spawn area: 11% [21:57:55] [Server thread/INFO]: Preparing spawn area: 21% [21:57:56] [Server thread/INFO]: Preparing spawn area: 30% [21:57:57] [Server thread/INFO]: Preparing spawn area: 43% [21:57:58] [Server thread/INFO]: Preparing spawn area: 55% [21:57:59] [Server thread/INFO]: Preparing spawn area: 68% [21:58:00] [Server thread/INFO]: Preparing spawn area: 83% [21:58:01] [Server thread/INFO]: Preparing spawn area: 98% [21:58:01] [Server thread/INFO]: Changing view distance to 4, from 10 [21:58:02] [Netty Client IO #0/INFO] [FML]: Server protocol version 2 [21:58:02] [Netty IO #1/INFO] [FML]: Client protocol version 2 [21:58:02] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : FML@7.10.99.99,Forge@10.13.4.1614,mcp@9.05,destriummod@2.0.0 [21:58:02] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT [21:58:02] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER [21:58:02] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established [21:58:02] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established [21:58:02] [Server thread/INFO]: Player299[local:E:25255c8c] logged in with entity id 132 at (-192.5, 69.0, 207.5) [21:58:02] [Server thread/INFO]: Player299 a rejoint la partie [21:58:07] [Server thread/INFO]: Player299 vient d'obtenir le succès [Faire l'inventaire] [21:58:07] [Client thread/INFO]: Warning: Clientside chunk ticking took 422 ms [21:58:07] [Client thread/INFO]: [CHAT] Player299 vient d'obtenir le succès [Faire l'inventaire] [21:58:17] [Server thread/INFO]: Saving and pausing game... [21:58:17] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld [21:58:17] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether [21:58:17] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End [21:58:17] [Server thread/INFO]: Stopping server [21:58:17] [Server thread/INFO]: Saving players [21:58:17] [Server thread/INFO]: Saving worlds [21:58:17] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld [21:58:18] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether [21:58:18] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End [21:58:19] [Server thread/INFO] [FML]: Unloading dimension 0 [21:58:19] [Server thread/INFO] [FML]: Unloading dimension -1 [21:58:19] [Server thread/INFO] [FML]: Unloading dimension 1 [21:58:19] [Server thread/INFO] [FML]: Applying holder lookups [21:58:19] [Server thread/INFO] [FML]: Holder lookups applied [21:58:21] [Client thread/ERROR]: Exception reading .\saves\Nouveau monde--------------------------\level.dat net.minecraft.util.ReportedException: Loading NBT data at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:503) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagList.func_152446_a(NBTTagList.java:59) ~[NBTTagList.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:179) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?] at net.minecraft.nbt.CompressedStreamTools.readCompressed(CompressedStreamTools.java:37) ~[CompressedStreamTools.class:?] at net.minecraft.world.storage.SaveFormatOld.getWorldInfo(SaveFormatOld.java:82) [SaveFormatOld.class:?] at net.minecraft.world.chunk.storage.AnvilSaveConverter.getSaveList(AnvilSaveConverter.java:64) [AnvilSaveConverter.class:?] at net.minecraft.client.gui.GuiSelectWorld.func_146627_h(GuiSelectWorld.java:80) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiSelectWorld.initGui(GuiSelectWorld.java:58) [GuiSelectWorld.class:?] at net.minecraft.client.gui.GuiScreen.setWorldAndResolution(GuiScreen.java:294) [GuiScreen.class:?] at net.minecraft.client.Minecraft.displayGuiScreen(Minecraft.java:865) [Minecraft.class:?] at net.minecraft.client.gui.GuiMainMenu.actionPerformed(GuiMainMenu.java:260) [GuiMainMenu.class:?] at net.minecraft.client.gui.GuiScreen.mouseClicked(GuiScreen.java:252) [GuiScreen.class:?] at net.minecraft.client.gui.GuiMainMenu.mouseClicked(GuiMainMenu.java:566) [GuiMainMenu.class:?] at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:344) [GuiScreen.class:?] at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:313) [GuiScreen.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1731) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_201] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_201] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.util.zip.ZipException: invalid distance too far back at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:164) ~[?:1.8.0_201] at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_201] at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_201] at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_201] at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_201] at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_201] at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_201] at net.minecraft.nbt.NBTTagString.func_152446_a(NBTTagString.java:38) ~[NBTTagString.class:?] at net.minecraft.nbt.NBTTagCompound.func_152449_a(NBTTagCompound.java:494) ~[NBTTagCompound.class:?] ... 32 more [21:58:23] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10 [21:58:23] [Server thread/INFO]: Generating keypair [21:58:23] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance [21:58:23] [Server thread/INFO] [FML]: Applying holder lookups [21:58:23] [Server thread/INFO] [FML]: Holder lookups applied [21:58:23] [Server thread/INFO] [FML]: Loading dimension 0 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@720971ec) [21:58:23] [Server thread/INFO] [FML]: Loading dimension 1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@720971ec) [21:58:23] [Server thread/INFO] [FML]: Loading dimension -1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@720971ec) [21:58:23] [Server thread/INFO]: Preparing start region for level 0 [21:58:24] [Server thread/WARN]: Skipping BlockEntity with id [21:58:24] [Server thread/INFO]: Changing view distance to 4, from 10 [21:58:24] [Netty Client IO #1/INFO] [FML]: Server protocol version 2 [21:58:24] [Netty IO #3/INFO] [FML]: Client protocol version 2 [21:58:24] [Netty IO #3/INFO] [FML]: Client attempting to join with 4 mods : FML@7.10.99.99,Forge@10.13.4.1614,mcp@9.05,destriummod@2.0.0 [21:58:24] [Netty IO #3/INFO] [FML]: Attempting connection with missing mods [] at CLIENT [21:58:24] [Netty Client IO #1/INFO] [FML]: Attempting connection with missing mods [] at SERVER [21:58:24] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established [21:58:24] [Server thread/INFO]: Player299[local:E:de699a95] logged in with entity id 4515 at (-192.5, 69.0, 207.5) [21:58:24] [Server thread/INFO]: Player299 a rejoint la partie [21:58:24] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established
-
Dans les deux cas il y a une erreur avec level.dat, donc ce n’est pas lié à ton coffre.
Du-coup je ne vois pas trop d’où vient de ton soucis
-
Je vien de relancer mon éclipse j ai supprimé mon readFromNBT et writeToNBT puis j ai collé celui du tutoriel et tout remarche j avais du mettre quelle que chose dedans sans faire exprès merci beaucoup pour avoir essayé de m aidée.