Jump to content

Recommended Posts

Posted

Hello I try to make a custom GUI of my Block to give the block a "internal" name so each Block has a string that can be changed.

But first of all I just wanted to create a gui with a textfield and a button but I'm always failing, I'm new to forge and java as well and the tutorials on the forge wiki don't help me at all so I post my code here and you tell me why it is not working and what has to be changed. Tips and explanations I would really appreciate and sorry for my english I'm not a native speaker.

 

 

FastTravelMod

 

 

package org.setcore.fasttravel;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.Mod.Init;
import cpw.mods.fml.common.Mod.Instance;
import cpw.mods.fml.common.Mod.PostInit;
import cpw.mods.fml.common.Mod.PreInit; 
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.NetworkMod;
import cpw.mods.fml.common.network.NetworkRegistry;
import cpw.mods.fml.common.registry.GameRegistry;
import cpw.mods.fml.common.registry.LanguageRegistry;

@Mod(modid="fasttravelmod", name="FastTravelMod", version="0.0.1")
@NetworkMod(clientSideRequired=true, serverSideRequired=false)
public class FastTravelMod
{

//BLOCKS//
public static final Block fastTravelBlock = new FastTravelBlock(500, Material.ground).setHardness(1.0f).setStepSound(Block.soundStoneFootstep).setUnlocalizedName("FastTravelBlock").setCreativeTab(CreativeTabs.tabBlock);



@Instance("fasttravelmod")
    public static FastTravelMod instance = new FastTravelMod();
    
    // Says where the client and server 'proxy' code is loaded.
    @SidedProxy(clientSide="org.setcore.fasttravel.ClientProxy", serverSide="org.setcore.fasttravel.CommonProxy")
    public static CommonProxy proxy;
    
    @EventHandler
    public void preInit(FMLPreInitializationEvent event) {
            // Stub Method
    }
    
    @EventHandler
    public void load(FMLInitializationEvent event) {
            GameRegistry.registerBlock(fastTravelBlock, "FastTravelBlock");
            LanguageRegistry.addName(fastTravelBlock, "Travel Marker");
            NetworkRegistry.instance().registerGuiHandler(this, new GuiHandler());
    }
    
    @EventHandler
    public void postInit(FMLPostInitializationEvent event) {
            // Stub Method
    }
}

 

 

CommonProxy

 

 

package org.setcore.fasttravel;

 

import cpw.mods.fml.common.network.IGuiHandler;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.tileentity.TileEntity;

import net.minecraft.world.World;

import net.minecraftforge.client.MinecraftForgeClient;

 

public class CommonProxy implements IGuiHandler

{

@Override

public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)

{

            return null;

}

@Override

public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)

{

 

switch(ID)

{

case 0:

return new GuiTravelMark(player);

}

 

return null;

 

}

}

 

 

ClientProxy

 

package org.setcore.fasttravel;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;

public class ClientProxy extends CommonProxy
{
@Override
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
{

		switch(ID)
		{
		case 0:
			return new GuiTravelMark(player);

		}
		return null;

}
}

 

 

FastTravelBlock

 

package org.setcore.fasttravel;

import net.minecraft.block.Block;
import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;

public class FastTravelBlock extends BlockContainer
{

public FastTravelBlock(int id, Material material) 
{
	super(id, material);
}


public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int i, float a, float b, float c)
{
	player.openGui(FastTravelMod.instance, 3, world, x, y, z);
	return true;

}


@Override
public TileEntity createNewTileEntity(World world) {
	return null;
}

}

 

 

GuiTravelMark

 

package org.setcore.fasttravel;

import org.lwjgl.opengl.GL11;

import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.GuiScreen;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ResourceLocation;

public class GuiTravelMark extends GuiScreen
{
public GuiTravelMark(EntityPlayer player)
{

}


private static final ResourceLocation RESOURCELOCATION = new ResourceLocation("fasttravelmod:/textures/guitravelmark/travelblockgui.png");
public final int xSizeOfTexture = 176;
public final int ySizeOfTexture = 88;
@Override
public void drawScreen(int x, int y, float f)
{
drawDefaultBackground();
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
this.mc.renderEngine.func_110577_a(RESOURCELOCATION);

int posX = (this.width - xSizeOfTexture) / 2;
int posY = (this.height - ySizeOfTexture) / 2;
drawTexturedModalRect(posX, posY, 0, 0, xSizeOfTexture, ySizeOfTexture);
super.drawScreen(x, y, f);
}


public void initGui()
{
this.buttonList.clear();

int posX = (this.width - xSizeOfTexture) / 2;
int posY = (this.height - ySizeOfTexture) / 2;

this.buttonList.add(new GuiButton(0, posX+ 40, posY + 40, 100, 20, "no use"));
}


//		this.mc.renderEngine.func_110577_a(RESOURCELOCATION);

}


 

 

GuiHandler

 

package org.setcore.fasttravel;

import net.minecraft.client.gui.inventory.GuiChest;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.ContainerChest;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.tileentity.TileEntityChest;
import net.minecraft.world.World;
import cpw.mods.fml.common.network.IGuiHandler;

public class GuiHandler implements IGuiHandler
{

        @Override
        public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) 
        { 
                if (ID == 3)
                {
                       return new GuiTravelMark(player); //return new ContainerForge(player.inventory, world, x, y, z);
                }

                return null;
        }

        @Override
        public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
        {
   }
                }
                if (ID == 3)
                {
                        
                }

                return null;
        }
}

 

 

And the errorlog by opening the gui :

 

Jul 28, 2013 10:19:05 PM net.minecraft.launchwrapper.LogWrapper log
INFO: Using tweak class name cpw.mods.fml.common.launcher.FMLTweaker
2013-07-28 22:19:05 [iNFO] [ForgeModLoader] Forge Mod Loader version 6.2.19.789 for Minecraft 1.6.2 loading
2013-07-28 22:19:05 [iNFO] [ForgeModLoader] Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_25, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7
2013-07-28 22:19:05 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
2013-07-28 22:19:05 [iNFO] [sTDOUT] Loaded 39 rules from AccessTransformer config file fml_at.cfg
2013-07-28 22:19:05 [iNFO] [sTDOUT] Loaded 107 rules from AccessTransformer config file forge_at.cfg
2013-07-28 22:19:05 [sEVERE] [ForgeModLoader] The binary patch set is missing. Things are probably about to go very wrong.
2013-07-28 22:19:05 [iNFO] [ForgeModLoader] Launching wrapped minecraft
2013-07-28 22:19:11 [iNFO] [Minecraft-Client] Setting user: Player496
2013-07-28 22:19:11 [iNFO] [Minecraft-Client] (Session ID is null)
2013-07-28 22:19:11 [iNFO] [Minecraft-Client] LWJGL Version: 2.9.0
2013-07-28 22:19:12 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default
2013-07-28 22:19:12 [iNFO] [sTDOUT] 
2013-07-28 22:19:12 [iNFO] [sTDOUT] Starting up SoundSystem...
2013-07-28 22:19:12 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization
2013-07-28 22:19:12 [iNFO] [sTDOUT] MinecraftForge v9.10.0.789 Initialized
2013-07-28 22:19:12 [iNFO] [ForgeModLoader] MinecraftForge v9.10.0.789 Initialized
2013-07-28 22:19:12 [iNFO] [sTDOUT] Replaced 101 ore recipies
2013-07-28 22:19:12 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization
2013-07-28 22:19:12 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\Louven\Desktop\forge\mcp\jars\config\logging.properties
2013-07-28 22:19:12 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL
2013-07-28 22:19:12 [iNFO] [sTDOUT] Initializing LWJGL OpenAL
2013-07-28 22:19:12 [iNFO] [sTDOUT]     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
2013-07-28 22:19:12 [iNFO] [ForgeModLoader] Searching C:\Users\Louven\Desktop\forge\mcp\jars\mods for mods
2013-07-28 22:19:12 [iNFO] [sTDOUT] OpenAL initialized.
2013-07-28 22:19:13 [iNFO] [sTDOUT] 
2013-07-28 22:19:14 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load
2013-07-28 22:19:14 [iNFO] [mcp] Activating mod mcp
2013-07-28 22:19:14 [iNFO] [FML] Activating mod FML
2013-07-28 22:19:14 [iNFO] [Forge] Activating mod Forge
2013-07-28 22:19:14 [iNFO] [fasttravelmod] Activating mod fasttravelmod
2013-07-28 22:19:14 [iNFO] [ForgeModLoader] Registering Forge Packet Handler
2013-07-28 22:19:14 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler
2013-07-28 22:19:14 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0
2013-07-28 22:19:14 [sEVERE] [Minecraft-Client] Using missing texture, unable to load: minecraft:textures/blocks/MISSING_ICON_TILE_500_FastTravelBlock.png
2013-07-28 22:19:14 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 4 mods
2013-07-28 22:19:14 [WARNING] [FastTravelMod] Mod FastTravelMod is missing a pack.mcmeta file, things may not work well
2013-07-28 22:19:14 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:FastTravelMod
2013-07-28 22:19:14 [sEVERE] [Minecraft-Client] Using missing texture, unable to load: minecraft:textures/blocks/MISSING_ICON_TILE_500_FastTravelBlock.png
2013-07-28 22:19:15 [iNFO] [sTDOUT] 
2013-07-28 22:19:15 [iNFO] [sTDOUT] SoundSystem shutting down...
2013-07-28 22:19:15 [iNFO] [sTDOUT]     Author: Paul Lamb, www.paulscode.com
2013-07-28 22:19:15 [iNFO] [sTDOUT] 
2013-07-28 22:19:15 [iNFO] [sTDOUT] 
2013-07-28 22:19:15 [iNFO] [sTDOUT] Starting up SoundSystem...
2013-07-28 22:19:15 [iNFO] [sTDOUT] Initializing LWJGL OpenAL
2013-07-28 22:19:15 [iNFO] [sTDOUT]     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
2013-07-28 22:19:15 [iNFO] [sTDOUT] OpenAL initialized.
2013-07-28 22:19:15 [iNFO] [sTDOUT] 
2013-07-28 22:19:16 [sEVERE] [Minecraft-Client] Realms: Invalid session id
2013-07-28 22:19:30 [iNFO] [Minecraft-Server] Starting integrated minecraft server version 1.6.2
2013-07-28 22:19:30 [iNFO] [Minecraft-Server] Generating keypair
2013-07-28 22:19:31 [iNFO] [ForgeModLoader] Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@7a859a9a)
2013-07-28 22:19:31 [iNFO] [ForgeModLoader] Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@7a859a9a)
2013-07-28 22:19:31 [iNFO] [ForgeModLoader] Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@7a859a9a)
2013-07-28 22:19:31 [iNFO] [Minecraft-Server] Preparing start region for level 0
2013-07-28 22:19:31 [iNFO] [sTDOUT] loading single player
2013-07-28 22:19:31 [iNFO] [Minecraft-Server] Player496[/127.0.0.1:0] logged in with entity id 327 at (15.517739999098788, 68.0, 288.2877094913678)
2013-07-28 22:19:31 [iNFO] [Minecraft-Server] Player496 joined the game
2013-07-28 22:19:32 [iNFO] [sTDOUT] Setting up custom skins
2013-07-28 22:19:33 [iNFO] [sTDERR] net.minecraft.util.ReportedException: Ticking memory connection
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:63)
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:689)
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:585)
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482)
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
2013-07-28 22:19:33 [iNFO] [sTDERR] Caused by: java.lang.ClassCastException: org.setcore.fasttravel.GuiTravelMark cannot be cast to net.minecraft.inventory.Container
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at cpw.mods.fml.common.network.NetworkRegistry.openRemoteGui(NetworkRegistry.java:308)
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at cpw.mods.fml.common.network.FMLNetworkHandler.openGui(FMLNetworkHandler.java:352)
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2461)
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at org.setcore.fasttravel.FastTravelBlock.onBlockActivated(FastTravelBlock.java:21)
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at net.minecraft.item.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:416)
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at net.minecraft.network.NetServerHandler.handlePlace(NetServerHandler.java:554)
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at net.minecraft.network.packet.Packet15Place.processPacket(Packet15Place.java:79)
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:141)
2013-07-28 22:19:33 [iNFO] [sTDERR] 	at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:54)
2013-07-28 22:19:33 [iNFO] [sTDERR] 	... 6 more
2013-07-28 22:19:33 [sEVERE] [Minecraft-Server] Encountered an unexpected exception ReportedException
net.minecraft.util.ReportedException: Ticking memory connection
at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:63)
at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:689)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:585)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482)
at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
Caused by: java.lang.ClassCastException: org.setcore.fasttravel.GuiTravelMark cannot be cast to net.minecraft.inventory.Container
at cpw.mods.fml.common.network.NetworkRegistry.openRemoteGui(NetworkRegistry.java:308)
at cpw.mods.fml.common.network.FMLNetworkHandler.openGui(FMLNetworkHandler.java:352)
at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2461)
at org.setcore.fasttravel.FastTravelBlock.onBlockActivated(FastTravelBlock.java:21)
at net.minecraft.item.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:416)
at net.minecraft.network.NetServerHandler.handlePlace(NetServerHandler.java:554)
at net.minecraft.network.packet.Packet15Place.processPacket(Packet15Place.java:79)
at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:141)
at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:54)
... 6 more
2013-07-28 22:19:33 [sEVERE] [Minecraft-Server] This crash report has been saved to: C:\Users\Louven\Desktop\forge\mcp\jars\.\crash-reports\crash-2013-07-28_22.19.33-server.txt
2013-07-28 22:19:33 [iNFO] [Minecraft-Server] Stopping server
2013-07-28 22:19:33 [iNFO] [Minecraft-Server] Saving players
2013-07-28 22:19:33 [iNFO] [Minecraft-Server] Player496 left the game
2013-07-28 22:19:33 [iNFO] [sTDOUT] ---- Minecraft Crash Report ----
2013-07-28 22:19:33 [iNFO] [sTDOUT] // I bet Cylons wouldn't have this problem.
2013-07-28 22:19:33 [iNFO] [sTDOUT] 
2013-07-28 22:19:33 [iNFO] [sTDOUT] Time: 28.07.13 22:19
2013-07-28 22:19:33 [iNFO] [sTDOUT] Description: Ticking memory connection
2013-07-28 22:19:33 [iNFO] [sTDOUT] 
2013-07-28 22:19:33 [iNFO] [sTDOUT] java.lang.ClassCastException: org.setcore.fasttravel.GuiTravelMark cannot be cast to net.minecraft.inventory.Container
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at cpw.mods.fml.common.network.NetworkRegistry.openRemoteGui(NetworkRegistry.java:308)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at cpw.mods.fml.common.network.FMLNetworkHandler.openGui(FMLNetworkHandler.java:352)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2461)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at org.setcore.fasttravel.FastTravelBlock.onBlockActivated(FastTravelBlock.java:21)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.item.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:416)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.network.NetServerHandler.handlePlace(NetServerHandler.java:554)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.network.packet.Packet15Place.processPacket(Packet15Place.java:79)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:141)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:54)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:689)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:585)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 
2013-07-28 22:19:33 [iNFO] [sTDOUT] 
2013-07-28 22:19:33 [iNFO] [sTDOUT] A detailed walkthrough of the error, its code path and all known details is as follows:
2013-07-28 22:19:33 [iNFO] [sTDOUT] ---------------------------------------------------------------------------------------
2013-07-28 22:19:33 [iNFO] [sTDOUT] 
2013-07-28 22:19:33 [iNFO] [sTDOUT] -- Head --
2013-07-28 22:19:33 [iNFO] [sTDOUT] Stacktrace:
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at cpw.mods.fml.common.network.NetworkRegistry.openRemoteGui(NetworkRegistry.java:308)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at cpw.mods.fml.common.network.FMLNetworkHandler.openGui(FMLNetworkHandler.java:352)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2461)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at org.setcore.fasttravel.FastTravelBlock.onBlockActivated(FastTravelBlock.java:21)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.item.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:416)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.network.NetServerHandler.handlePlace(NetServerHandler.java:554)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.network.packet.Packet15Place.processPacket(Packet15Place.java:79)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:141)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 
2013-07-28 22:19:33 [iNFO] [sTDOUT] -- Ticking connection --
2013-07-28 22:19:33 [iNFO] [sTDOUT] Details:
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	Connection: net.minecraft.network.NetServerHandler@4116f358
2013-07-28 22:19:33 [iNFO] [sTDOUT] Stacktrace:
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:54)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:689)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:585)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 
2013-07-28 22:19:33 [iNFO] [sTDOUT] -- System Details --
2013-07-28 22:19:33 [iNFO] [sTDOUT] Details:
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	Minecraft Version: 1.6.2
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	Operating System: Windows 7 (amd64) version 6.1
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	Java Version: 1.7.0_25, Oracle Corporation
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	Memory: 1777478688 bytes (1695 MB) / 2112618496 bytes (2014 MB) up to 4260102144 bytes (4062 MB)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	JVM Flags: 6 total; -Xincgc -Xmx1024M -Xms1024M -Xincgc -Xms2048m -Xmx4096m
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	AABB Pool Size: 5948 (333088 bytes; 0 MB) allocated, 5385 (301560 bytes; 0 MB) used
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	Suspicious classes: FML and Forge are installed
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	IntCache: cache: 0, tcache: 0, allocated: 1, tallocated: 63
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	FML: MCP v8.04 FML v6.2.19.789 Minecraft Forge 9.10.0.789 4 mods loaded, 4 mods active
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	mcp{8.04} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	FML{6.2.19.789} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	Forge{9.10.0.789} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	fasttravelmod{0.0.1} [FastTravelMod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	Profiler Position: N/A (disabled)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	Vec3 Pool Size: 1357 (75992 bytes; 0 MB) allocated, 1249 (69944 bytes; 0 MB) used
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	Player Count: 1 / 8; [EntityPlayerMP['Player496'/327, l='New World', x=15,52, y=68,00, z=288,29]]
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	Type: Integrated Server (map_client.txt)
2013-07-28 22:19:33 [iNFO] [sTDOUT] 	Is Modded: Definitely; Client brand changed to 'fml,forge'
2013-07-28 22:19:33 [iNFO] [sTDOUT] #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Louven\Desktop\forge\mcp\jars\.\crash-reports\crash-2013-07-28_22.19.33-server.txt
2013-07-28 22:19:33 [iNFO] [Minecraft-Server] Stopping server
2013-07-28 22:19:33 [iNFO] [Minecraft-Server] Saving players
AL lib: (EE) alc_cleanup: 1 device not closed

 

 

Thank you for helping me , LG Graphic :P

Posted

Well first, delete the GuiHandler class.

You already made it in the proxies.

Then register the proxy.

Finally, getServerGuiElement(args) should return a Container, not a GUI.

Posted

Seems like I'm still stuck at my gui I just wanna show the gui now at all I've tried to change the code to a Container and looked at the tutorial in the wiki but now I have the error : " java.lang.ClassCastException: org.setcore.fasttravel.ContainerTravelMark cannot be cast to net.minecraft.client.gui.GuiScreen"

 

My Code so far :

 

ClientProxy

 

 

package org.setcore.fasttravel;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;

public class ClientProxy extends CommonProxy
{
@Override
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
{

		switch(ID)
		{
		case 0:
			TileEntity tileEntity = world.getBlockTileEntity(x, y, z);
			return new ContainerTravelMark(player.inventory, (TileEntityTravel) tileEntity);

		}
		return null;

}
}

 

 

 

CommonProxy

 

 

package org.setcore.fasttravel;

import cpw.mods.fml.common.network.IGuiHandler;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
import net.minecraftforge.client.MinecraftForgeClient;

public class CommonProxy implements IGuiHandler
{
	@Override
	public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
	{
		switch(ID)
		{
		case 0:
			TileEntity tileEntity = world.getBlockTileEntity(x, y, z);
			return new ContainerTravelMark(player.inventory, (TileEntityTravel) tileEntity);
		}

	return null;
	}
		@Override
		public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
		{

				switch(ID)
				{
				case 0:
					 TileEntity tileEntity = world.getBlockTileEntity(x, y, z);
		             return new GuiTravelMark(player.inventory, (TileEntityTravel) tileEntity);

				}

			return null;

		}
}

 

 

 

ContainerTravelMark

 

 

package org.setcore.fasttravel;

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 ContainerTravelMark extends Container {

        protected TileEntityTravel tileEntity;

        public ContainerTravelMark (InventoryPlayer inventoryPlayer, TileEntityTravel te){
                tileEntity = te;

                //the Slot constructor takes the IInventory and the slot number in that it binds to
                //and the x-y coordinates it resides on-screen
                for (int i = 0; i < 3; i++) {
                        for (int j = 0; j < 3; j++) {
                                addSlotToContainer(new Slot(tileEntity, j + i * 3, 62 + j * 18, 17 + i * 18));
                        }
                }

                //commonly used vanilla code that adds the player's inventory
                bindPlayerInventory(inventoryPlayer);
        }

        @Override
        public boolean canInteractWith(EntityPlayer player) {
                return tileEntity.isUseableByPlayer(player);
        }


        protected void bindPlayerInventory(InventoryPlayer inventoryPlayer) {
                for (int i = 0; i < 3; i++) {
                        for (int j = 0; j < 9; j++) {
                                addSlotToContainer(new Slot(inventoryPlayer, j + i * 9 + 9,
                                                8 + j * 18, 84 + i * 18));
                        }
                }

                for (int i = 0; i < 9; i++) {
                        addSlotToContainer(new Slot(inventoryPlayer, i, 8 + i * 18, 142));
                }
        }

        @Override
        public ItemStack transferStackInSlot(EntityPlayer player, int slot) {
                ItemStack stack = null;
                Slot slotObject = (Slot) inventorySlots.get(slot);

                //null checks and checks if the item can be stacked (maxStackSize > 1)
                if (slotObject != null && slotObject.getHasStack()) {
                        ItemStack stackInSlot = slotObject.getStack();
                        stack = stackInSlot.copy();

                        //merges the item into player inventory since its in the tileEntity
                        if (slot < 9) {
                                if (!this.mergeItemStack(stackInSlot, 0, 35, true)) {
                                        return null;
                                }
                        }
                        //places it into the tileEntity is possible since its in the player inventory
                        else if (!this.mergeItemStack(stackInSlot, 0, 9, false)) {
                                return null;
                        }

                        if (stackInSlot.stackSize == 0) {
                                slotObject.putStack(null);
                        } else {
                                slotObject.onSlotChanged();
                        }

                        if (stackInSlot.stackSize == stack.stackSize) {
                                return null;
                        }
                        slotObject.onPickupFromSlot(player, stackInSlot);
                }
                return stack;
        }
}


 

 

 

FastTravelBlock

 

 

package org.setcore.fasttravel;

import net.minecraft.block.Block;
import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;

public class FastTravelBlock extends BlockContainer
{

public FastTravelBlock(int id, Material material) 
{
	super(id, material);
}


public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int i, float a, float b, float c)
{
       player.openGui(FastTravelMod.instance, 0, world, x, y, z);
        return true;
}




@Override
public TileEntity createNewTileEntity(World world) {
	return null;
}

}

 

 

 

FastTravelMod

 

 

package org.setcore.fasttravel;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.Mod.Init;
import cpw.mods.fml.common.Mod.Instance;
import cpw.mods.fml.common.Mod.PostInit;
import cpw.mods.fml.common.Mod.PreInit; 
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.NetworkMod;
import cpw.mods.fml.common.network.NetworkRegistry;
import cpw.mods.fml.common.registry.GameRegistry;
import cpw.mods.fml.common.registry.LanguageRegistry;

@Mod(modid="fasttravelmod", name="FastTravelMod", version="0.0.1")
@NetworkMod(clientSideRequired=true, serverSideRequired=false)
public class FastTravelMod
{

//BLOCKS//
public static final Block fastTravelBlock = new FastTravelBlock(500, Material.ground).setHardness(1.0f).setStepSound(Block.soundStoneFootstep).setUnlocalizedName("FastTravelBlock").setCreativeTab(CreativeTabs.tabBlock);



@Instance("fasttravelmod")
    public static FastTravelMod instance = new FastTravelMod();
    
    // Says where the client and server 'proxy' code is loaded.
    @SidedProxy(clientSide="org.setcore.fasttravel.ClientProxy", serverSide="org.setcore.fasttravel.CommonProxy")
    public static CommonProxy proxy;
    
    @EventHandler
    public void preInit(FMLPreInitializationEvent event) {
            // Stub Method
    }
    
    @EventHandler
    public void load(FMLInitializationEvent event) {
            GameRegistry.registerBlock(fastTravelBlock, "FastTravelBlock");
            LanguageRegistry.addName(fastTravelBlock, "Travel Marker");
            NetworkRegistry.instance().registerGuiHandler(this, this.proxy);
    }
    
    @EventHandler
    public void postInit(FMLPostInitializationEvent event) {
            // Stub Method
    }
}

 

 

 

GuiTravelMark

 

 

package org.setcore.fasttravel;
import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.StatCollector;

import org.lwjgl.opengl.GL11;

public class GuiTravelMark extends GuiContainer {

    private static final ResourceLocation textureLocation = new ResourceLocation("fasttravelmod:textures/guitravelmark/travelblockgui.png");

public GuiTravelMark (InventoryPlayer inventoryPlayer,
                    TileEntityTravel tileEntity) {
            //the container is instanciated and passed to the superclass for handling
            super(new ContainerTravelMark(inventoryPlayer, tileEntity));
    }

    @Override
    protected void drawGuiContainerForegroundLayer(int param1, int param2) {
            //draw text and stuff here
            //the parameters for drawString are: string, x, y, color
            fontRenderer.drawString("Tiny", 8, 6, 4210752);
            //draws "Inventory" or your regional equivalent
            fontRenderer.drawString(StatCollector.translateToLocal("container.inventory"), 8, ySize - 96 + 2, 4210752);
    }

    @Override
    protected void drawGuiContainerBackgroundLayer(float par1, int par2,
                    int par3) {
            //draw your Gui here, only thing you need to change is the path
            
            this.mc.renderEngine.func_110577_a(textureLocation);
            int x = (width - xSize) / 2;
            int y = (height - ySize) / 2;
            this.drawTexturedModalRect(x, y, 0, 0, xSize, ySize);
    }

}

 

 

TileEntityTravel

 

 

package org.setcore.fasttravel;

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.tileentity.TileEntity;

public class TileEntityTravel extends TileEntity implements IInventory {

        private ItemStack[] inv;

        public TileEntityTravel(){
                inv = new ItemStack[9];
        }
        
        @Override
        public int getSizeInventory() {
                return inv.length;
        }

        @Override
        public ItemStack getStackInSlot(int slot) {
                return inv[slot];
        }
        
        @Override
        public void setInventorySlotContents(int slot, ItemStack stack) {
                inv[slot] = stack;
                if (stack != null && stack.stackSize > getInventoryStackLimit()) {
                        stack.stackSize = getInventoryStackLimit();
                }               
        }

        @Override
        public ItemStack decrStackSize(int slot, int amt) {
                ItemStack stack = getStackInSlot(slot);
                if (stack != null) {
                        if (stack.stackSize <= amt) {
                                setInventorySlotContents(slot, null);
                        } else {
                                stack = stack.splitStack(amt);
                                if (stack.stackSize == 0) {
                                        setInventorySlotContents(slot, null);
                                }
                        }
                }
                return stack;
        }

        @Override
        public ItemStack getStackInSlotOnClosing(int slot) {
                ItemStack stack = getStackInSlot(slot);
                if (stack != null) {
                        setInventorySlotContents(slot, null);
                }
                return stack;
        }
        
        @Override
        public int getInventoryStackLimit() {
                return 64;
        }

        @Override
        public boolean isUseableByPlayer(EntityPlayer player) {
                return worldObj.getBlockTileEntity(xCoord, yCoord, zCoord) == this &&
                player.getDistanceSq(xCoord + 0.5, yCoord + 0.5, zCoord + 0.5) < 64;
        }

        @Override
        public void openChest() {}

        @Override
        public void closeChest() {}
        
        @Override
        public void readFromNBT(NBTTagCompound tagCompound) {
                super.readFromNBT(tagCompound);
                
                NBTTagList tagList = tagCompound.getTagList("Inventory");
                for (int i = 0; i < tagList.tagCount(); i++) {
                        NBTTagCompound tag = (NBTTagCompound) tagList.tagAt(i);
                        byte slot = tag.getByte("Slot");
                        if (slot >= 0 && slot < inv.length) {
                                inv[slot] = ItemStack.loadItemStackFromNBT(tag);
                        }
                }
        }

        @Override
        public void writeToNBT(NBTTagCompound tagCompound) {
                super.writeToNBT(tagCompound);
                                
                NBTTagList itemList = new NBTTagList();
                for (int i = 0; i < inv.length; i++) {
                        ItemStack stack = inv[i];
                        if (stack != null) {
                                NBTTagCompound tag = new NBTTagCompound();
                                tag.setByte("Slot", (byte) i);
                                stack.writeToNBT(tag);
                                itemList.appendTag(tag);
                        }
                }
                tagCompound.setTag("Inventory", itemList);
        }

                @Override
                public String getInvName() {
                        return "tco.tileentitytiny";
                }

			@Override
			public boolean isInvNameLocalized() {
				// TODO Auto-generated method stub
				return false;
			}

			@Override
			public boolean isItemValidForSlot(int i, ItemStack itemstack) {
				// TODO Auto-generated method stub
				return false;
			}



}

 

 

Posted

I changed it now so that the server returns the container and the client returns the gui know I'm running into the following error caused by a nullpointerexception but I don't know where ...:

 

 

2013-07-29 12:28:36 [iNFO] [sTDERR] net.minecraft.util.ReportedException: Ticking memory connection
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:63)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:689)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:585)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
2013-07-29 12:28:36 [iNFO] [sTDERR] Caused by: java.lang.NullPointerException
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.inventory.Slot.getStack(Slot.java:91)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.inventory.Container.getInventory(Container.java:69)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.inventory.Container.addCraftingToCrafters(Container.java:55)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at cpw.mods.fml.common.network.NetworkRegistry.openRemoteGui(NetworkRegistry.java:321)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at cpw.mods.fml.common.network.FMLNetworkHandler.openGui(FMLNetworkHandler.java:352)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2461)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at org.setcore.fasttravel.FastTravelBlock.onBlockActivated(FastTravelBlock.java:21)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.item.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:416)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.network.NetServerHandler.handlePlace(NetServerHandler.java:554)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.network.packet.Packet15Place.processPacket(Packet15Place.java:79)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:141)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:54)
2013-07-29 12:28:36 [iNFO] [sTDERR] 	... 6 more
2013-07-29 12:28:36 [sEVERE] [Minecraft-Server] Encountered an unexpected exception ReportedException
net.minecraft.util.ReportedException: Ticking memory connection
at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:63)
at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:689)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:585)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482)
at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
Caused by: java.lang.NullPointerException
at net.minecraft.inventory.Slot.getStack(Slot.java:91)
at net.minecraft.inventory.Container.getInventory(Container.java:69)
at net.minecraft.inventory.Container.addCraftingToCrafters(Container.java:55)
at cpw.mods.fml.common.network.NetworkRegistry.openRemoteGui(NetworkRegistry.java:321)
at cpw.mods.fml.common.network.FMLNetworkHandler.openGui(FMLNetworkHandler.java:352)
at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2461)
at org.setcore.fasttravel.FastTravelBlock.onBlockActivated(FastTravelBlock.java:21)
at net.minecraft.item.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:416)
at net.minecraft.network.NetServerHandler.handlePlace(NetServerHandler.java:554)
at net.minecraft.network.packet.Packet15Place.processPacket(Packet15Place.java:79)
at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:141)
at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:54)
... 6 more
2013-07-29 12:28:36 [sEVERE] [Minecraft-Server] This crash report has been saved to: C:\Users\Louven\Desktop\forge\mcp\jars\.\crash-reports\crash-2013-07-29_12.28.36-server.txt
2013-07-29 12:28:36 [iNFO] [Minecraft-Server] Stopping server
2013-07-29 12:28:36 [iNFO] [Minecraft-Server] Saving players
2013-07-29 12:28:36 [iNFO] [Minecraft-Server] Player437 left the game
2013-07-29 12:28:36 [iNFO] [Minecraft-Server] Saving worlds
2013-07-29 12:28:36 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld
2013-07-29 12:28:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether
2013-07-29 12:28:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End
2013-07-29 12:28:37 [iNFO] [ForgeModLoader] Unloading dimension 0
2013-07-29 12:28:37 [iNFO] [ForgeModLoader] Unloading dimension -1
2013-07-29 12:28:37 [iNFO] [ForgeModLoader] Unloading dimension 1
2013-07-29 12:28:37 [iNFO] [ForgeModLoader] The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.
2013-07-29 12:28:37 [iNFO] [sTDERR] net.minecraft.util.ReportedException: Rendering screen
2013-07-29 12:28:37 [iNFO] [sTDERR] 	at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1045)
2013-07-29 12:28:37 [iNFO] [sTDERR] 	at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:934)
2013-07-29 12:28:37 [iNFO] [sTDERR] 	at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:826)
2013-07-29 12:28:37 [iNFO] [sTDERR] 	at net.minecraft.client.main.Main.main(Main.java:93)
2013-07-29 12:28:37 [iNFO] [sTDERR] 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2013-07-29 12:28:37 [iNFO] [sTDERR] 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 12:28:37 [iNFO] [sTDERR] 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 12:28:37 [iNFO] [sTDERR] 	at java.lang.reflect.Method.invoke(Unknown Source)
2013-07-29 12:28:37 [iNFO] [sTDERR] 	at net.minecraft.launchwrapper.Launch.launch(Launch.java:57)
2013-07-29 12:28:37 [iNFO] [sTDERR] 	at net.minecraft.launchwrapper.Launch.main(Launch.java:18)
2013-07-29 12:28:37 [iNFO] [sTDERR] Caused by: java.lang.NullPointerException
2013-07-29 12:28:37 [iNFO] [sTDERR] 	at net.minecraft.inventory.Slot.getStack(Slot.java:91)
2013-07-29 12:28:37 [iNFO] [sTDERR] 	at net.minecraft.client.gui.inventory.GuiContainer.drawSlotInventory(GuiContainer.java:353)
2013-07-29 12:28:37 [iNFO] [sTDERR] 	at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:132)
2013-07-29 12:28:37 [iNFO] [sTDERR] 	at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1036)
2013-07-29 12:28:37 [iNFO] [sTDERR] 	... 9 more
2013-07-29 12:28:37 [iNFO] [sTDOUT] ---- Minecraft Crash Report ----
2013-07-29 12:28:37 [iNFO] [sTDOUT] // Daisy, daisy...
2013-07-29 12:28:37 [iNFO] [sTDOUT] 
2013-07-29 12:28:37 [iNFO] [sTDOUT] Time: 29.07.13 12:28
2013-07-29 12:28:37 [iNFO] [sTDOUT] Description: Rendering screen
2013-07-29 12:28:37 [iNFO] [sTDOUT] 
2013-07-29 12:28:37 [iNFO] [sTDOUT] java.lang.NullPointerException
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.inventory.Slot.getStack(Slot.java:91)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.client.gui.inventory.GuiContainer.drawSlotInventory(GuiContainer.java:353)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:132)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1036)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:934)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:826)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.client.main.Main.main(Main.java:93)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at java.lang.reflect.Method.invoke(Unknown Source)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.launchwrapper.Launch.launch(Launch.java:57)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.launchwrapper.Launch.main(Launch.java:18)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 
2013-07-29 12:28:37 [iNFO] [sTDOUT] 
2013-07-29 12:28:37 [iNFO] [sTDOUT] A detailed walkthrough of the error, its code path and all known details is as follows:
2013-07-29 12:28:37 [iNFO] [sTDOUT] ---------------------------------------------------------------------------------------
2013-07-29 12:28:37 [iNFO] [sTDOUT] 
2013-07-29 12:28:37 [iNFO] [sTDOUT] -- Head --
2013-07-29 12:28:37 [iNFO] [sTDOUT] Stacktrace:
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.inventory.Slot.getStack(Slot.java:91)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.client.gui.inventory.GuiContainer.drawSlotInventory(GuiContainer.java:353)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:132)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 
2013-07-29 12:28:37 [iNFO] [sTDOUT] -- Screen render details --
2013-07-29 12:28:37 [iNFO] [sTDOUT] Details:
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Screen name: org.setcore.fasttravel.GuiTravelMark
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Mouse location: Scaled: (213, 119). Absolute: (427, 240)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Screen size: Scaled: (427, 240). Absolute: (854, 480). Scale factor of 2
2013-07-29 12:28:37 [iNFO] [sTDOUT] 
2013-07-29 12:28:37 [iNFO] [sTDOUT] -- Affected level --
2013-07-29 12:28:37 [iNFO] [sTDOUT] Details:
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Level name: MpServer
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	All players: 1 total; [EntityClientPlayerMP['Player437'/323, l='MpServer', x=18,06, y=69,62, z=287,62]]
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Chunk stats: MultiplayerChunkCache: 265
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Level seed: 0
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Level generator: ID 00 - default, ver 1. Features enabled: false
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Level generator options: 
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Level spawn location: World: (183,64,232), Chunk: (at 7,4,8 in 11,14; contains blocks 176,0,224 to 191,255,239), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Level time: 4788 game time, 4788 day time
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Level dimension: 0
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Level storage version: 0x00000 - Unknown?
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Forced entities: 83 total; [EntityMinecartChest['entity.MinecartChest.name'/0, l='MpServer', x=-1,50, y=39,50, z=234,50], EntityCreeper['Creeper'/1, l='MpServer', x=-2,30, y=38,86, z=307,69], EntityZombie['Zombie'/2, l='MpServer', x=-2,94, y=38,38, z=311,25], EntityCreeper['Creeper'/3, l='MpServer', x=-4,34, y=38,01, z=309,38], EntityZombie['Zombie'/4, l='MpServer', x=-3,84, y=37,97, z=305,13], EntityPig['Pig'/5, l='MpServer', x=-3,06, y=66,00, z=332,06], EntityPig['Pig'/6, l='MpServer', x=-7,29, y=68,00, z=333,19], EntityPig['Pig'/7, l='MpServer', x=-6,53, y=63,00, z=349,50], EntityPig['Pig'/8, l='MpServer', x=-3,50, y=67,00, z=337,19], EntitySkeleton['Skeleton'/15, l='MpServer', x=11,88, y=42,00, z=262,50], EntitySkeleton['Skeleton'/17, l='MpServer', x=7,70, y=32,00, z=276,84], EntityCreeper['Creeper'/16, l='MpServer', x=12,59, y=41,00, z=260,59], EntityBat['Bat'/18, l='MpServer', x=11,75, y=42,10, z=284,25], EntityItem['item.item.seeds'/21, l='MpServer', x=17,16, y=63,13, z=311,47], EntitySheep['Sheep'/29, l='MpServer', x=41,50, y=63,00, z=317,38], EntityCreeper['Creeper'/31, l='MpServer', x=36,66, y=38,00, z=352,97], EntitySheep['Sheep'/30, l='MpServer', x=34,44, y=63,00, z=315,19], EntityZombie['Zombie'/32, l='MpServer', x=37,63, y=37,00, z=354,59], EntitySheep['Sheep'/39, l='MpServer', x=63,53, y=64,00, z=223,38], EntitySheep['Sheep'/42, l='MpServer', x=52,51, y=62,03, z=273,92], EntitySheep['Sheep'/43, l='MpServer', x=49,78, y=64,00, z=280,66], EntitySheep['Sheep'/40, l='MpServer', x=59,19, y=63,00, z=235,41], EntitySquid['Squid'/41, l='MpServer', x=55,54, y=56,42, z=263,27], EntitySheep['Sheep'/46, l='MpServer', x=54,50, y=65,00, z=323,50], EntitySheep['Sheep'/47, l='MpServer', x=48,16, y=64,00, z=330,88], EntitySheep['Sheep'/44, l='MpServer', x=50,16, y=63,00, z=291,44], EntitySheep['Sheep'/45, l='MpServer', x=54,13, y=65,00, z=294,44], EntitySheep['Sheep'/55, l='MpServer', x=67,84, y=63,00, z=225,47], EntityZombie['Zombie'/59, l='MpServer', x=76,44, y=44,00, z=361,00], EntitySheep['Sheep'/58, l='MpServer', x=64,34, y=63,00, z=341,91], EntityEnderman['Enderman'/57, l='MpServer', x=67,89, y=64,00, z=216,50], EntitySheep['Sheep'/56, l='MpServer', x=72,94, y=63,00, z=224,16], EntityBat['Bat'/343, l='MpServer', x=-41,47, y=40,10, z=250,88], EntitySkeleton['Skeleton'/342, l='MpServer', x=-43,72, y=52,00, z=223,75], EntityBat['Bat'/341, l='MpServer', x=-32,25, y=37,10, z=207,44], EntityBat['Bat'/70, l='MpServer', x=88,41, y=15,10, z=238,16], EntitySpider['Spider'/340, l='MpServer', x=-51,28, y=52,00, z=240,34], EntityBat['Bat'/71, l='MpServer', x=92,25, y=15,10, z=230,41], EntitySkeleton['Skeleton'/339, l='MpServer', x=-52,44, y=37,00, z=253,06], EntityCreeper['Creeper'/338, l='MpServer', x=-59,31, y=54,00, z=231,94], EntityCreeper['Creeper'/336, l='MpServer', x=-52,34, y=37,00, z=239,50], EntityZombie['Zombie'/351, l='MpServer', x=-45,13, y=39,00, z=287,38], EntitySheep['Sheep'/76, l='MpServer', x=86,75, y=70,00, z=294,53], EntityZombie['Zombie'/350, l='MpServer', x=-45,47, y=40,00, z=270,97], EntitySheep['Sheep'/77, l='MpServer', x=88,75, y=71,00, z=298,22], EntityZombie['Zombie'/349, l='MpServer', x=-41,06, y=40,00, z=269,53], EntitySheep['Sheep'/78, l='MpServer', x=92,03, y=71,00, z=301,09], EntitySkeleton['Skeleton'/348, l='MpServer', x=-42,59, y=36,00, z=258,31], EntitySheep['Sheep'/79, l='MpServer', x=81,66, y=69,00, z=294,50], EntityZombie['Zombie'/347, l='MpServer', x=-47,50, y=53,00, z=244,78], EntityBat['Bat'/72, l='MpServer', x=90,52, y=16,28, z=236,51], EntityZombie['Zombie'/346, l='MpServer', x=-46,56, y=54,00, z=244,50], EntityBat['Bat'/73, l='MpServer', x=83,60, y=14,12, z=246,52], EntityZombie['Zombie'/345, l='MpServer', x=-42,84, y=57,00, z=248,83], EntityBat['Bat'/74, l='MpServer', x=88,64, y=14,00, z=235,68], EntitySkeleton['Skeleton'/344, l='MpServer', x=-46,50, y=37,00, z=251,50], EntitySheep['Sheep'/75, l='MpServer', x=85,71, y=70,00, z=299,19], EntityZombie['Zombie'/85, l='MpServer', x=85,56, y=41,00, z=324,72], EntityMinecartChest['entity.MinecartChest.name'/84, l='MpServer', x=94,50, y=38,50, z=334,47], EntityCreeper['Creeper'/87, l='MpServer', x=85,41, y=25,00, z=351,06], EntityZombie['Zombie'/86, l='MpServer', x=86,16, y=41,00, z=327,50], EntityZombie['Zombie'/81, l='MpServer', x=85,59, y=41,00, z=316,34], EntitySkeleton['Skeleton'/80, l='MpServer', x=93,84, y=24,00, z=319,47], EntityBat['Bat'/83, l='MpServer', x=89,50, y=29,10, z=322,50], EntityZombie['Zombie'/82, l='MpServer', x=86,63, y=41,00, z=316,32], EntityZombie['Zombie'/334, l='MpServer', x=-59,38, y=22,12, z=209,70], EntityZombie['Zombie'/335, l='MpServer', x=-52,31, y=23,00, z=216,34], EntityCreeper['Creeper'/89, l='MpServer', x=93,38, y=38,00, z=336,06], EntityZombie['Zombie'/88, l='MpServer', x=83,72, y=25,00, z=347,22], EntityCreeper['Creeper'/90, l='MpServer', x=82,53, y=44,00, z=347,00], EntityBat['Bat'/101, l='MpServer', x=94,87, y=19,08, z=239,53], EntityClientPlayerMP['Player437'/323, l='MpServer', x=18,06, y=69,62, z=287,62], EntityCreeper['Creeper'/110, l='MpServer', x=97,47, y=28,00, z=311,75], EntityCreeper['Creeper'/111, l='MpServer', x=96,59, y=24,00, z=318,59], EntitySpider['Spider'/356, l='MpServer', x=-20,50, y=39,00, z=259,50], EntityBat['Bat'/357, l='MpServer', x=-25,25, y=40,10, z=265,25], EntityCreeper['Creeper'/358, l='MpServer', x=-17,06, y=36,00, z=287,00], EntitySpider['Spider'/115, l='MpServer', x=96,53, y=38,00, z=334,72], EntityBat['Bat'/352, l='MpServer', x=-25,75, y=36,10, z=212,25], EntityItem['item.tile.rail'/353, l='MpServer', x=-31,50, y=38,13, z=264,81], EntitySkeleton['Skeleton'/354, l='MpServer', x=-24,30, y=38,66, z=266,30], EntitySpider['Spider'/355, l='MpServer', x=-22,03, y=39,00, z=261,66], EntityWolf['Wolf'/123, l='MpServer', x=96,50, y=63,00, z=354,69]]
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Retry entities: 0 total; []
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Server brand: fml,forge
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Server type: Integrated singleplayer server
2013-07-29 12:28:37 [iNFO] [sTDOUT] Stacktrace:
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:440)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2298)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:844)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.client.main.Main.main(Main.java:93)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at java.lang.reflect.Method.invoke(Unknown Source)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.launchwrapper.Launch.launch(Launch.java:57)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	at net.minecraft.launchwrapper.Launch.main(Launch.java:18)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 
2013-07-29 12:28:37 [iNFO] [sTDOUT] -- System Details --
2013-07-29 12:28:37 [iNFO] [sTDOUT] Details:
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Minecraft Version: 1.6.2
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Operating System: Windows 7 (amd64) version 6.1
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Java Version: 1.7.0_25, Oracle Corporation
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Memory: 1978100640 bytes (1886 MB) / 2112618496 bytes (2014 MB) up to 4260102144 bytes (4062 MB)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	JVM Flags: 6 total; -Xincgc -Xmx1024M -Xms1024M -Xincgc -Xms2048m -Xmx4096m
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	AABB Pool Size: 16934 (948304 bytes; 0 MB) allocated, 1179 (66024 bytes; 0 MB) used
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Suspicious classes: FML and Forge are installed
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	IntCache: cache: 0, tcache: 0, allocated: 1, tallocated: 63
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	FML: MCP v8.04 FML v6.2.19.789 Minecraft Forge 9.10.0.789 4 mods loaded, 4 mods active
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	mcp{8.04} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	FML{6.2.19.789} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Forge{9.10.0.789} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	fasttravelmod{0.0.1} [FastTravelMod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Launched Version: 1.6
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	LWJGL: 2.9.0
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	OpenGL: GeForce GTX 570/PCIe/SSE2 GL version 4.3.0, NVIDIA Corporation
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Is Modded: Definitely; Client brand changed to 'fml,forge'
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Type: Client (map_client.txt)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Resource Pack: Default
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Current Language: English (US)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Profiler Position: N/A (disabled)
2013-07-29 12:28:37 [iNFO] [sTDOUT] 	Vec3 Pool Size: 2048 (114688 bytes; 0 MB) allocated, 312 (17472 bytes; 0 MB) used
2013-07-29 12:28:37 [iNFO] [sTDOUT] #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Louven\Desktop\forge\mcp\jars\.\crash-reports\crash-2013-07-29_12.28.37-client.txt
AL lib: (EE) alc_cleanup: 1 device not closed

 

Posted

Here you go :

 

CommonProxy

 

package org.setcore.fasttravel;

import cpw.mods.fml.common.network.IGuiHandler;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
import net.minecraftforge.client.MinecraftForgeClient;

public class CommonProxy implements IGuiHandler
{
	@Override
	public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
	{
		switch(ID)
		{
		case 0:
			TileEntity tileEntity = world.getBlockTileEntity(x, y, z);
			return new GuiTravelMark(player.inventory, (TileEntityTravel) tileEntity);
		}

	return null;
	}
		@Override
		public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
		{

				switch(ID)
				{
				case 0:
					 TileEntity tileEntity = world.getBlockTileEntity(x, y, z);
		             
		             return new ContainerTravelMark(player.inventory, (TileEntityTravel) tileEntity);

				}

			return null;

		}
}

 

 

 

ClientProxy

 

package org.setcore.fasttravel;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;

public class ClientProxy extends CommonProxy
{
@Override
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
{

		switch(ID)
		{
		case 0:
			TileEntity tileEntity = world.getBlockTileEntity(x, y, z);
			return new GuiTravelMark(player.inventory, (TileEntityTravel) tileEntity);

		}
		return null;

}
}

 

 

I think it has something to do with the TileEntity

Posted

either this works or show us more of the error log (specially 5-6 lines after the one in OP)

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Posted

I don't know what you mean exactly but this is whole Log from the debug :

 

 

Jul 29, 2013 3:53:42 PM net.minecraft.launchwrapper.LogWrapper log
INFO: Using tweak class name cpw.mods.fml.common.launcher.FMLTweaker
2013-07-29 15:53:42 [iNFO] [ForgeModLoader] Forge Mod Loader version 6.2.19.789 for Minecraft 1.6.2 loading
2013-07-29 15:53:42 [iNFO] [ForgeModLoader] Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_25, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7
2013-07-29 15:53:42 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
2013-07-29 15:53:42 [iNFO] [sTDOUT] Loaded 39 rules from AccessTransformer config file fml_at.cfg
2013-07-29 15:53:42 [iNFO] [sTDOUT] Loaded 107 rules from AccessTransformer config file forge_at.cfg
2013-07-29 15:53:43 [sEVERE] [ForgeModLoader] The binary patch set is missing. Things are probably about to go very wrong.
2013-07-29 15:53:43 [iNFO] [ForgeModLoader] Launching wrapped minecraft
2013-07-29 15:53:49 [iNFO] [Minecraft-Client] Setting user: Player201
2013-07-29 15:53:49 [iNFO] [Minecraft-Client] (Session ID is null)
2013-07-29 15:53:51 [iNFO] [Minecraft-Client] LWJGL Version: 2.9.0
2013-07-29 15:53:52 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default
2013-07-29 15:53:52 [iNFO] [sTDOUT] 
2013-07-29 15:53:52 [iNFO] [sTDOUT] Starting up SoundSystem...
2013-07-29 15:53:52 [iNFO] [sTDOUT] Initializing LWJGL OpenAL
2013-07-29 15:53:52 [iNFO] [sTDOUT]     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
2013-07-29 15:53:52 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization
2013-07-29 15:53:52 [iNFO] [sTDOUT] MinecraftForge v9.10.0.789 Initialized
2013-07-29 15:53:52 [iNFO] [ForgeModLoader] MinecraftForge v9.10.0.789 Initialized
2013-07-29 15:53:52 [iNFO] [sTDOUT] OpenAL initialized.
2013-07-29 15:53:52 [iNFO] [sTDOUT] Replaced 101 ore recipies
2013-07-29 15:53:53 [iNFO] [sTDOUT] 
2013-07-29 15:53:53 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization
2013-07-29 15:53:53 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\Louven\Desktop\forge\mcp\jars\config\logging.properties
2013-07-29 15:53:53 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL
2013-07-29 15:53:53 [iNFO] [ForgeModLoader] Searching C:\Users\Louven\Desktop\forge\mcp\jars\mods for mods
2013-07-29 15:54:00 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load
2013-07-29 15:54:00 [iNFO] [mcp] Activating mod mcp
2013-07-29 15:54:00 [iNFO] [FML] Activating mod FML
2013-07-29 15:54:00 [iNFO] [Forge] Activating mod Forge
2013-07-29 15:54:00 [iNFO] [fasttravelmod] Activating mod fasttravelmod
2013-07-29 15:54:00 [iNFO] [ForgeModLoader] Registering Forge Packet Handler
2013-07-29 15:54:00 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler
2013-07-29 15:54:00 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0
2013-07-29 15:54:00 [sEVERE] [Minecraft-Client] Using missing texture, unable to load: minecraft:textures/blocks/MISSING_ICON_TILE_500_FastTravelBlock.png
2013-07-29 15:54:01 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 4 mods
2013-07-29 15:54:01 [WARNING] [FastTravelMod] Mod FastTravelMod is missing a pack.mcmeta file, things may not work well
2013-07-29 15:54:01 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:FastTravelMod
2013-07-29 15:54:01 [sEVERE] [Minecraft-Client] Using missing texture, unable to load: minecraft:textures/blocks/MISSING_ICON_TILE_500_FastTravelBlock.png
2013-07-29 15:54:01 [iNFO] [sTDOUT] 
2013-07-29 15:54:01 [iNFO] [sTDOUT] SoundSystem shutting down...
2013-07-29 15:54:01 [iNFO] [sTDOUT]     Author: Paul Lamb, www.paulscode.com
2013-07-29 15:54:01 [iNFO] [sTDOUT] 
2013-07-29 15:54:01 [iNFO] [sTDOUT] 
2013-07-29 15:54:01 [iNFO] [sTDOUT] Starting up SoundSystem...
2013-07-29 15:54:01 [iNFO] [sTDOUT] Initializing LWJGL OpenAL
2013-07-29 15:54:01 [iNFO] [sTDOUT]     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
2013-07-29 15:54:01 [iNFO] [sTDOUT] OpenAL initialized.
2013-07-29 15:54:02 [iNFO] [sTDOUT] 
2013-07-29 15:54:02 [sEVERE] [Minecraft-Client] Realms: Invalid session id
2013-07-29 15:54:15 [iNFO] [Minecraft-Server] Starting integrated minecraft server version 1.6.2
2013-07-29 15:54:15 [iNFO] [Minecraft-Server] Generating keypair
2013-07-29 15:54:15 [iNFO] [ForgeModLoader] Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@295fb895)
2013-07-29 15:54:15 [iNFO] [ForgeModLoader] Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@295fb895)
2013-07-29 15:54:15 [iNFO] [ForgeModLoader] Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@295fb895)
2013-07-29 15:54:15 [iNFO] [Minecraft-Server] Preparing start region for level 0
2013-07-29 15:54:16 [iNFO] [sTDOUT] loading single player
2013-07-29 15:54:16 [iNFO] [Minecraft-Server] Player201[/127.0.0.1:0] logged in with entity id 323 at (18.056096138980433, 68.0, 287.61309474830915)
2013-07-29 15:54:16 [iNFO] [Minecraft-Server] Player201 joined the game
2013-07-29 15:54:16 [iNFO] [sTDOUT] Setting up custom skins
2013-07-29 15:54:20 [iNFO] [sTDERR] net.minecraft.util.ReportedException: Ticking memory connection
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:63)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:689)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:585)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
2013-07-29 15:54:20 [iNFO] [sTDERR] Caused by: java.lang.NullPointerException
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.inventory.Slot.getStack(Slot.java:91)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.inventory.Container.getInventory(Container.java:69)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.inventory.Container.addCraftingToCrafters(Container.java:55)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at cpw.mods.fml.common.network.NetworkRegistry.openRemoteGui(NetworkRegistry.java:321)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at cpw.mods.fml.common.network.FMLNetworkHandler.openGui(FMLNetworkHandler.java:352)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2461)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at org.setcore.fasttravel.FastTravelBlock.onBlockActivated(FastTravelBlock.java:21)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.item.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:416)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.network.NetServerHandler.handlePlace(NetServerHandler.java:554)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.network.packet.Packet15Place.processPacket(Packet15Place.java:79)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:141)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:54)
2013-07-29 15:54:20 [iNFO] [sTDERR] 	... 6 more
2013-07-29 15:54:20 [sEVERE] [Minecraft-Server] Encountered an unexpected exception ReportedException
net.minecraft.util.ReportedException: Ticking memory connection
at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:63)
at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:689)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:585)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482)
at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
Caused by: java.lang.NullPointerException
at net.minecraft.inventory.Slot.getStack(Slot.java:91)
at net.minecraft.inventory.Container.getInventory(Container.java:69)
at net.minecraft.inventory.Container.addCraftingToCrafters(Container.java:55)
at cpw.mods.fml.common.network.NetworkRegistry.openRemoteGui(NetworkRegistry.java:321)
at cpw.mods.fml.common.network.FMLNetworkHandler.openGui(FMLNetworkHandler.java:352)
at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2461)
at org.setcore.fasttravel.FastTravelBlock.onBlockActivated(FastTravelBlock.java:21)
at net.minecraft.item.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:416)
at net.minecraft.network.NetServerHandler.handlePlace(NetServerHandler.java:554)
at net.minecraft.network.packet.Packet15Place.processPacket(Packet15Place.java:79)
at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:141)
at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:54)
... 6 more
2013-07-29 15:54:20 [sEVERE] [Minecraft-Server] This crash report has been saved to: C:\Users\Louven\Desktop\forge\mcp\jars\.\crash-reports\crash-2013-07-29_15.54.20-server.txt
2013-07-29 15:54:20 [iNFO] [Minecraft-Server] Stopping server
2013-07-29 15:54:20 [iNFO] [Minecraft-Server] Saving players
2013-07-29 15:54:20 [iNFO] [Minecraft-Server] Player201 left the game
2013-07-29 15:54:20 [iNFO] [Minecraft-Server] Saving worlds
2013-07-29 15:54:20 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld
2013-07-29 15:54:20 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether
2013-07-29 15:54:20 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End
2013-07-29 15:54:20 [iNFO] [ForgeModLoader] Unloading dimension 0
2013-07-29 15:54:20 [iNFO] [ForgeModLoader] Unloading dimension -1
2013-07-29 15:54:20 [iNFO] [ForgeModLoader] Unloading dimension 1
2013-07-29 15:54:20 [iNFO] [ForgeModLoader] The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.
2013-07-29 15:54:21 [iNFO] [sTDERR] net.minecraft.util.ReportedException: Rendering screen
2013-07-29 15:54:21 [iNFO] [sTDERR] 	at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1045)
2013-07-29 15:54:21 [iNFO] [sTDERR] 	at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:934)
2013-07-29 15:54:21 [iNFO] [sTDERR] 	at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:826)
2013-07-29 15:54:21 [iNFO] [sTDERR] 	at net.minecraft.client.main.Main.main(Main.java:93)
2013-07-29 15:54:21 [iNFO] [sTDERR] 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2013-07-29 15:54:21 [iNFO] [sTDERR] 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 15:54:21 [iNFO] [sTDERR] 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 15:54:21 [iNFO] [sTDERR] 	at java.lang.reflect.Method.invoke(Unknown Source)
2013-07-29 15:54:21 [iNFO] [sTDERR] 	at net.minecraft.launchwrapper.Launch.launch(Launch.java:57)
2013-07-29 15:54:21 [iNFO] [sTDERR] 	at net.minecraft.launchwrapper.Launch.main(Launch.java:18)
2013-07-29 15:54:21 [iNFO] [sTDERR] Caused by: java.lang.NullPointerException
2013-07-29 15:54:21 [iNFO] [sTDERR] 	at net.minecraft.inventory.Slot.getStack(Slot.java:91)
2013-07-29 15:54:21 [iNFO] [sTDERR] 	at net.minecraft.client.gui.inventory.GuiContainer.drawSlotInventory(GuiContainer.java:353)
2013-07-29 15:54:21 [iNFO] [sTDERR] 	at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:132)
2013-07-29 15:54:21 [iNFO] [sTDERR] 	at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1036)
2013-07-29 15:54:21 [iNFO] [sTDERR] 	... 9 more
2013-07-29 15:54:21 [iNFO] [sTDOUT] ---- Minecraft Crash Report ----
2013-07-29 15:54:21 [iNFO] [sTDOUT] // I'm sorry, Dave.
2013-07-29 15:54:21 [iNFO] [sTDOUT] 
2013-07-29 15:54:21 [iNFO] [sTDOUT] Time: 29.07.13 15:54
2013-07-29 15:54:21 [iNFO] [sTDOUT] Description: Rendering screen
2013-07-29 15:54:21 [iNFO] [sTDOUT] 
2013-07-29 15:54:21 [iNFO] [sTDOUT] java.lang.NullPointerException
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.inventory.Slot.getStack(Slot.java:91)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.client.gui.inventory.GuiContainer.drawSlotInventory(GuiContainer.java:353)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:132)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1036)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:934)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:826)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.client.main.Main.main(Main.java:93)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at java.lang.reflect.Method.invoke(Unknown Source)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.launchwrapper.Launch.launch(Launch.java:57)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.launchwrapper.Launch.main(Launch.java:18)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 
2013-07-29 15:54:21 [iNFO] [sTDOUT] 
2013-07-29 15:54:21 [iNFO] [sTDOUT] A detailed walkthrough of the error, its code path and all known details is as follows:
2013-07-29 15:54:21 [iNFO] [sTDOUT] ---------------------------------------------------------------------------------------
2013-07-29 15:54:21 [iNFO] [sTDOUT] 
2013-07-29 15:54:21 [iNFO] [sTDOUT] -- Head --
2013-07-29 15:54:21 [iNFO] [sTDOUT] Stacktrace:
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.inventory.Slot.getStack(Slot.java:91)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.client.gui.inventory.GuiContainer.drawSlotInventory(GuiContainer.java:353)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:132)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 
2013-07-29 15:54:21 [iNFO] [sTDOUT] -- Screen render details --
2013-07-29 15:54:21 [iNFO] [sTDOUT] Details:
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Screen name: org.setcore.fasttravel.GuiTravelMark
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Mouse location: Scaled: (213, 119). Absolute: (427, 240)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Screen size: Scaled: (427, 240). Absolute: (854, 480). Scale factor of 2
2013-07-29 15:54:21 [iNFO] [sTDOUT] 
2013-07-29 15:54:21 [iNFO] [sTDOUT] -- Affected level --
2013-07-29 15:54:21 [iNFO] [sTDOUT] Details:
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Level name: MpServer
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	All players: 1 total; [EntityClientPlayerMP['Player201'/323, l='MpServer', x=19,54, y=68,62, z=286,89]]
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Chunk stats: MultiplayerChunkCache: 345
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Level seed: 0
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Level generator: ID 00 - default, ver 1. Features enabled: false
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Level generator options: 
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Level spawn location: World: (183,64,232), Chunk: (at 7,4,8 in 11,14; contains blocks 176,0,224 to 191,255,239), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Level time: 4861 game time, 4861 day time
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Level dimension: 0
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Level storage version: 0x00000 - Unknown?
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Forced entities: 83 total; [EntityMinecartChest['entity.MinecartChest.name'/0, l='MpServer', x=-1,50, y=39,50, z=234,50], EntityCreeper['Creeper'/1, l='MpServer', x=-1,68, y=38,04, z=306,34], EntityZombie['Zombie'/2, l='MpServer', x=-3,32, y=38,25, z=310,62], EntityCreeper['Creeper'/3, l='MpServer', x=-4,33, y=38,04, z=309,64], EntityZombie['Zombie'/4, l='MpServer', x=-3,84, y=37,88, z=305,13], EntityPig['Pig'/5, l='MpServer', x=-3,06, y=66,00, z=332,06], EntityPig['Pig'/6, l='MpServer', x=-7,97, y=68,00, z=333,09], EntityPig['Pig'/7, l='MpServer', x=-9,31, y=63,00, z=353,88], EntityPig['Pig'/8, l='MpServer', x=-3,50, y=67,00, z=337,19], EntitySkeleton['Skeleton'/15, l='MpServer', x=11,88, y=42,00, z=262,50], EntitySkeleton['Skeleton'/17, l='MpServer', x=7,69, y=32,43, z=276,84], EntityCreeper['Creeper'/16, l='MpServer', x=12,59, y=41,00, z=260,59], EntityBat['Bat'/18, l='MpServer', x=11,75, y=42,10, z=284,25], EntityItem['item.item.seeds'/21, l='MpServer', x=17,19, y=63,13, z=311,47], EntitySheep['Sheep'/29, l='MpServer', x=41,50, y=63,00, z=317,38], EntityCreeper['Creeper'/31, l='MpServer', x=37,00, y=38,00, z=352,31], EntitySheep['Sheep'/30, l='MpServer', x=31,51, y=63,00, z=315,20], EntityZombie['Zombie'/32, l='MpServer', x=36,31, y=38,00, z=353,16], EntitySheep['Sheep'/39, l='MpServer', x=65,20, y=64,00, z=220,14], EntitySheep['Sheep'/42, l='MpServer', x=52,50, y=62,10, z=274,03], EntitySheep['Sheep'/43, l='MpServer', x=49,19, y=64,00, z=280,34], EntitySheep['Sheep'/40, l='MpServer', x=59,19, y=63,00, z=235,41], EntitySquid['Squid'/41, l='MpServer', x=55,77, y=56,00, z=262,58], EntitySheep['Sheep'/46, l='MpServer', x=54,50, y=65,00, z=323,50], EntitySheep['Sheep'/47, l='MpServer', x=48,16, y=64,00, z=330,88], EntitySheep['Sheep'/44, l='MpServer', x=52,32, y=64,06, z=290,53], EntitySheep['Sheep'/45, l='MpServer', x=54,13, y=65,00, z=294,44], EntityEnderman['Enderman'/55, l='MpServer', x=68,31, y=64,00, z=216,50], EntityZombie['Zombie'/59, l='MpServer', x=76,44, y=44,00, z=361,00], EntitySheep['Sheep'/58, l='MpServer', x=64,34, y=63,00, z=341,91], EntitySheep['Sheep'/57, l='MpServer', x=72,94, y=63,00, z=224,16], EntitySheep['Sheep'/56, l='MpServer', x=67,84, y=63,00, z=225,47], EntityBat['Bat'/343, l='MpServer', x=-41,47, y=40,10, z=250,88], EntitySkeleton['Skeleton'/342, l='MpServer', x=-43,72, y=52,00, z=223,75], EntityBat['Bat'/70, l='MpServer', x=88,41, y=15,10, z=238,16], EntitySpider['Spider'/340, l='MpServer', x=-51,28, y=52,00, z=240,34], EntityBat['Bat'/71, l='MpServer', x=92,25, y=15,10, z=230,41], EntitySkeleton['Skeleton'/339, l='MpServer', x=-52,44, y=37,00, z=253,06], EntityCreeper['Creeper'/338, l='MpServer', x=-57,42, y=54,00, z=233,28], EntityCreeper['Creeper'/336, l='MpServer', x=-52,32, y=37,00, z=239,61], EntityZombie['Zombie'/351, l='MpServer', x=-46,13, y=39,00, z=290,41], EntitySheep['Sheep'/76, l='MpServer', x=82,04, y=70,00, z=300,81], EntityZombie['Zombie'/350, l='MpServer', x=-45,47, y=40,00, z=270,97], EntitySheep['Sheep'/77, l='MpServer', x=86,75, y=70,00, z=294,53], EntityZombie['Zombie'/349, l='MpServer', x=-41,06, y=40,00, z=269,53], EntitySheep['Sheep'/78, l='MpServer', x=88,75, y=71,00, z=298,22], EntitySkeleton['Skeleton'/348, l='MpServer', x=-42,59, y=36,00, z=258,31], EntitySheep['Sheep'/79, l='MpServer', x=92,03, y=71,00, z=301,09], EntityZombie['Zombie'/347, l='MpServer', x=-49,25, y=53,00, z=246,22], EntityBat['Bat'/72, l='MpServer', x=90,57, y=14,96, z=235,45], EntityBat['Bat'/73, l='MpServer', x=90,58, y=16,66, z=237,48], EntityZombie['Zombie'/346, l='MpServer', x=-46,56, y=54,00, z=244,50], EntityZombie['Zombie'/345, l='MpServer', x=-43,28, y=57,00, z=248,59], EntityBat['Bat'/74, l='MpServer', x=90,30, y=14,47, z=232,72], EntitySkeleton['Skeleton'/344, l='MpServer', x=-46,50, y=37,00, z=251,50], EntityBat['Bat'/75, l='MpServer', x=84,51, y=14,88, z=245,94], EntityMinecartChest['entity.MinecartChest.name'/85, l='MpServer', x=94,50, y=38,50, z=334,50], EntityBat['Bat'/84, l='MpServer', x=89,50, y=29,10, z=322,50], EntityZombie['Zombie'/87, l='MpServer', x=88,78, y=40,00, z=325,47], EntityZombie['Zombie'/86, l='MpServer', x=85,56, y=41,00, z=324,72], EntitySkeleton['Skeleton'/81, l='MpServer', x=93,81, y=24,00, z=319,46], EntitySheep['Sheep'/80, l='MpServer', x=81,66, y=69,00, z=294,50], EntityZombie['Zombie'/83, l='MpServer', x=86,63, y=41,00, z=315,66], EntityZombie['Zombie'/82, l='MpServer', x=85,59, y=41,00, z=316,34], EntityZombie['Zombie'/334, l='MpServer', x=-59,38, y=22,02, z=209,70], EntityZombie['Zombie'/335, l='MpServer', x=-52,31, y=23,00, z=216,34], EntityZombie['Zombie'/89, l='MpServer', x=83,72, y=25,00, z=347,22], EntityCreeper['Creeper'/88, l='MpServer', x=85,41, y=25,00, z=351,06], EntityCreeper['Creeper'/91, l='MpServer', x=82,53, y=44,00, z=347,00], EntityCreeper['Creeper'/90, l='MpServer', x=93,38, y=38,00, z=336,06], EntityClientPlayerMP['Player201'/323, l='MpServer', x=19,54, y=68,62, z=286,89], EntityCreeper['Creeper'/110, l='MpServer', x=97,47, y=28,00, z=311,75], EntityCreeper['Creeper'/111, l='MpServer', x=96,59, y=24,00, z=318,59], EntitySpider['Spider'/356, l='MpServer', x=-20,50, y=39,00, z=259,50], EntityBat['Bat'/357, l='MpServer', x=-25,25, y=40,10, z=265,25], EntityCreeper['Creeper'/358, l='MpServer', x=-17,06, y=36,00, z=287,00], EntityBat['Bat'/352, l='MpServer', x=-25,75, y=36,10, z=212,25], EntitySpider['Spider'/114, l='MpServer', x=96,53, y=38,00, z=334,72], EntityItem['item.tile.rail'/353, l='MpServer', x=-31,47, y=38,13, z=264,81], EntitySheep['Sheep'/113, l='MpServer', x=97,60, y=72,00, z=301,03], EntitySkeleton['Skeleton'/354, l='MpServer', x=-24,30, y=38,02, z=266,30], EntitySpider['Spider'/355, l='MpServer', x=-22,03, y=39,00, z=261,66], EntityWolf['Wolf'/122, l='MpServer', x=96,50, y=63,00, z=354,69]]
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Retry entities: 0 total; []
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Server brand: fml,forge
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Server type: Integrated singleplayer server
2013-07-29 15:54:21 [iNFO] [sTDOUT] Stacktrace:
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:440)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2298)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:844)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.client.main.Main.main(Main.java:93)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at java.lang.reflect.Method.invoke(Unknown Source)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.launchwrapper.Launch.launch(Launch.java:57)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	at net.minecraft.launchwrapper.Launch.main(Launch.java:18)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 
2013-07-29 15:54:21 [iNFO] [sTDOUT] -- System Details --
2013-07-29 15:54:21 [iNFO] [sTDOUT] Details:
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Minecraft Version: 1.6.2
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Operating System: Windows 7 (amd64) version 6.1
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Java Version: 1.7.0_25, Oracle Corporation
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Memory: 1751757312 bytes (1670 MB) / 2112618496 bytes (2014 MB) up to 4260102144 bytes (4062 MB)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	JVM Flags: 6 total; -Xincgc -Xmx1024M -Xms1024M -Xincgc -Xms2048m -Xmx4096m
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	AABB Pool Size: 16934 (948304 bytes; 0 MB) allocated, 1174 (65744 bytes; 0 MB) used
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Suspicious classes: FML and Forge are installed
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	IntCache: cache: 0, tcache: 0, allocated: 3, tallocated: 63
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	FML: MCP v8.04 FML v6.2.19.789 Minecraft Forge 9.10.0.789 4 mods loaded, 4 mods active
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	mcp{8.04} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	FML{6.2.19.789} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Forge{9.10.0.789} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	fasttravelmod{0.0.1} [FastTravelMod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Launched Version: 1.6
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	LWJGL: 2.9.0
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	OpenGL: GeForce GTX 570/PCIe/SSE2 GL version 4.3.0, NVIDIA Corporation
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Is Modded: Definitely; Client brand changed to 'fml,forge'
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Type: Client (map_client.txt)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Resource Pack: Default
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Current Language: English (US)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Profiler Position: N/A (disabled)
2013-07-29 15:54:21 [iNFO] [sTDOUT] 	Vec3 Pool Size: 1614 (90384 bytes; 0 MB) allocated, 348 (19488 bytes; 0 MB) used
2013-07-29 15:54:21 [iNFO] [sTDOUT] #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Louven\Desktop\forge\mcp\jars\.\crash-reports\crash-2013-07-29_15.54.21-client.txt
AL lib: (EE) alc_cleanup: 1 device not closed

 

 

 

And I've got 2 crash reports as files :

 

 

---- Minecraft Crash Report ----
// Oops.

Time: 29.07.13 15:54
Description: Ticking memory connection

java.lang.NullPointerException
at net.minecraft.inventory.Slot.getStack(Slot.java:91)
at net.minecraft.inventory.Container.getInventory(Container.java:69)
at net.minecraft.inventory.Container.addCraftingToCrafters(Container.java:55)
at cpw.mods.fml.common.network.NetworkRegistry.openRemoteGui(NetworkRegistry.java:321)
at cpw.mods.fml.common.network.FMLNetworkHandler.openGui(FMLNetworkHandler.java:352)
at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2461)
at org.setcore.fasttravel.FastTravelBlock.onBlockActivated(FastTravelBlock.java:21)
at net.minecraft.item.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:416)
at net.minecraft.network.NetServerHandler.handlePlace(NetServerHandler.java:554)
at net.minecraft.network.packet.Packet15Place.processPacket(Packet15Place.java:79)
at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:141)
at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:54)
at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:689)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:585)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482)
at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)


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

-- Head --
Stacktrace:
at net.minecraft.inventory.Slot.getStack(Slot.java:91)
at net.minecraft.inventory.Container.getInventory(Container.java:69)
at net.minecraft.inventory.Container.addCraftingToCrafters(Container.java:55)
at cpw.mods.fml.common.network.NetworkRegistry.openRemoteGui(NetworkRegistry.java:321)
at cpw.mods.fml.common.network.FMLNetworkHandler.openGui(FMLNetworkHandler.java:352)
at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2461)
at org.setcore.fasttravel.FastTravelBlock.onBlockActivated(FastTravelBlock.java:21)
at net.minecraft.item.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:416)
at net.minecraft.network.NetServerHandler.handlePlace(NetServerHandler.java:554)
at net.minecraft.network.packet.Packet15Place.processPacket(Packet15Place.java:79)
at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:141)

-- Ticking connection --
Details:
Connection: net.minecraft.network.NetServerHandler@36844406
Stacktrace:
at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:54)
at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:689)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:585)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482)
at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)

-- System Details --
Details:
Minecraft Version: 1.6.2
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.7.0_25, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 1769343824 bytes (1687 MB) / 2112618496 bytes (2014 MB) up to 4260102144 bytes (4062 MB)
JVM Flags: 6 total; -Xincgc -Xmx1024M -Xms1024M -Xincgc -Xms2048m -Xmx4096m
AABB Pool Size: 5647 (316232 bytes; 0 MB) allocated, 5245 (293720 bytes; 0 MB) used
Suspicious classes: FML and Forge are installed
IntCache: cache: 0, tcache: 0, allocated: 3, tallocated: 63
FML: MCP v8.04 FML v6.2.19.789 Minecraft Forge 9.10.0.789 4 mods loaded, 4 mods active
mcp{8.04} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
FML{6.2.19.789} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{9.10.0.789} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
fasttravelmod{0.0.1} [FastTravelMod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Profiler Position: N/A (disabled)
Vec3 Pool Size: 1512 (84672 bytes; 0 MB) allocated, 1465 (82040 bytes; 0 MB) used
Player Count: 1 / 8; [EntityPlayerMP['Player201'/323, l='New World', x=19,53, y=67,00, z=286,89]]
Type: Integrated Server (map_client.txt)
Is Modded: Definitely; Client brand changed to 'fml,forge'

 

 

 

---- Minecraft Crash Report ----
// This is a token for 1 free hug. Redeem at your nearest Mojangsta: [~~HUG~~]

Time: 29.07.13 15:54
Description: Rendering screen

java.lang.NullPointerException
at net.minecraft.inventory.Slot.getStack(Slot.java:91)
at net.minecraft.client.gui.inventory.GuiContainer.drawSlotInventory(GuiContainer.java:353)
at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:132)
at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1036)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:934)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:826)
at net.minecraft.client.main.Main.main(Main.java:93)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:57)
at net.minecraft.launchwrapper.Launch.main(Launch.java:18)


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

-- Head --
Stacktrace:
at net.minecraft.inventory.Slot.getStack(Slot.java:91)
at net.minecraft.client.gui.inventory.GuiContainer.drawSlotInventory(GuiContainer.java:353)
at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:132)

-- Screen render details --
Details:
Screen name: org.setcore.fasttravel.GuiTravelMark
Mouse location: Scaled: (213, 119). Absolute: (427, 240)
Screen size: Scaled: (427, 240). Absolute: (854, 480). Scale factor of 2

-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP['Player201'/323, l='MpServer', x=19,54, y=68,62, z=286,89]]
Chunk stats: MultiplayerChunkCache: 345
Level seed: 0
Level generator: ID 00 - default, ver 1. Features enabled: false
Level generator options: 
Level spawn location: World: (183,64,232), Chunk: (at 7,4,8 in 11,14; contains blocks 176,0,224 to 191,255,239), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
Level time: 4861 game time, 4861 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
Forced entities: 83 total; [EntityMinecartChest['entity.MinecartChest.name'/0, l='MpServer', x=-1,50, y=39,50, z=234,50], EntityCreeper['Creeper'/1, l='MpServer', x=-1,68, y=38,04, z=306,34], EntityZombie['Zombie'/2, l='MpServer', x=-3,32, y=38,25, z=310,62], EntityCreeper['Creeper'/3, l='MpServer', x=-4,33, y=38,04, z=309,64], EntityZombie['Zombie'/4, l='MpServer', x=-3,84, y=37,88, z=305,13], EntityPig['Pig'/5, l='MpServer', x=-3,06, y=66,00, z=332,06], EntityPig['Pig'/6, l='MpServer', x=-7,97, y=68,00, z=333,09], EntityPig['Pig'/7, l='MpServer', x=-9,31, y=63,00, z=353,88], EntityPig['Pig'/8, l='MpServer', x=-3,50, y=67,00, z=337,19], EntitySkeleton['Skeleton'/15, l='MpServer', x=11,88, y=42,00, z=262,50], EntitySkeleton['Skeleton'/17, l='MpServer', x=7,69, y=32,43, z=276,84], EntityCreeper['Creeper'/16, l='MpServer', x=12,59, y=41,00, z=260,59], EntityBat['Bat'/18, l='MpServer', x=11,75, y=42,10, z=284,25], EntityItem['item.item.seeds'/21, l='MpServer', x=17,19, y=63,13, z=311,47], EntitySheep['Sheep'/29, l='MpServer', x=41,50, y=63,00, z=317,38], EntityCreeper['Creeper'/31, l='MpServer', x=37,00, y=38,00, z=352,31], EntitySheep['Sheep'/30, l='MpServer', x=31,51, y=63,00, z=315,20], EntityZombie['Zombie'/32, l='MpServer', x=36,31, y=38,00, z=353,16], EntitySheep['Sheep'/39, l='MpServer', x=65,20, y=64,00, z=220,14], EntitySheep['Sheep'/42, l='MpServer', x=52,50, y=62,10, z=274,03], EntitySheep['Sheep'/43, l='MpServer', x=49,19, y=64,00, z=280,34], EntitySheep['Sheep'/40, l='MpServer', x=59,19, y=63,00, z=235,41], EntitySquid['Squid'/41, l='MpServer', x=55,77, y=56,00, z=262,58], EntitySheep['Sheep'/46, l='MpServer', x=54,50, y=65,00, z=323,50], EntitySheep['Sheep'/47, l='MpServer', x=48,16, y=64,00, z=330,88], EntitySheep['Sheep'/44, l='MpServer', x=52,32, y=64,06, z=290,53], EntitySheep['Sheep'/45, l='MpServer', x=54,13, y=65,00, z=294,44], EntityEnderman['Enderman'/55, l='MpServer', x=68,31, y=64,00, z=216,50], EntityZombie['Zombie'/59, l='MpServer', x=76,44, y=44,00, z=361,00], EntitySheep['Sheep'/58, l='MpServer', x=64,34, y=63,00, z=341,91], EntitySheep['Sheep'/57, l='MpServer', x=72,94, y=63,00, z=224,16], EntitySheep['Sheep'/56, l='MpServer', x=67,84, y=63,00, z=225,47], EntityBat['Bat'/343, l='MpServer', x=-41,47, y=40,10, z=250,88], EntitySkeleton['Skeleton'/342, l='MpServer', x=-43,72, y=52,00, z=223,75], EntityBat['Bat'/70, l='MpServer', x=88,41, y=15,10, z=238,16], EntitySpider['Spider'/340, l='MpServer', x=-51,28, y=52,00, z=240,34], EntityBat['Bat'/71, l='MpServer', x=92,25, y=15,10, z=230,41], EntitySkeleton['Skeleton'/339, l='MpServer', x=-52,44, y=37,00, z=253,06], EntityCreeper['Creeper'/338, l='MpServer', x=-57,42, y=54,00, z=233,28], EntityCreeper['Creeper'/336, l='MpServer', x=-52,32, y=37,00, z=239,61], EntityZombie['Zombie'/351, l='MpServer', x=-46,13, y=39,00, z=290,41], EntitySheep['Sheep'/76, l='MpServer', x=82,04, y=70,00, z=300,81], EntityZombie['Zombie'/350, l='MpServer', x=-45,47, y=40,00, z=270,97], EntitySheep['Sheep'/77, l='MpServer', x=86,75, y=70,00, z=294,53], EntityZombie['Zombie'/349, l='MpServer', x=-41,06, y=40,00, z=269,53], EntitySheep['Sheep'/78, l='MpServer', x=88,75, y=71,00, z=298,22], EntitySkeleton['Skeleton'/348, l='MpServer', x=-42,59, y=36,00, z=258,31], EntitySheep['Sheep'/79, l='MpServer', x=92,03, y=71,00, z=301,09], EntityZombie['Zombie'/347, l='MpServer', x=-49,25, y=53,00, z=246,22], EntityBat['Bat'/72, l='MpServer', x=90,57, y=14,96, z=235,45], EntityBat['Bat'/73, l='MpServer', x=90,58, y=16,66, z=237,48], EntityZombie['Zombie'/346, l='MpServer', x=-46,56, y=54,00, z=244,50], EntityZombie['Zombie'/345, l='MpServer', x=-43,28, y=57,00, z=248,59], EntityBat['Bat'/74, l='MpServer', x=90,30, y=14,47, z=232,72], EntitySkeleton['Skeleton'/344, l='MpServer', x=-46,50, y=37,00, z=251,50], EntityBat['Bat'/75, l='MpServer', x=84,51, y=14,88, z=245,94], EntityMinecartChest['entity.MinecartChest.name'/85, l='MpServer', x=94,50, y=38,50, z=334,50], EntityBat['Bat'/84, l='MpServer', x=89,50, y=29,10, z=322,50], EntityZombie['Zombie'/87, l='MpServer', x=88,78, y=40,00, z=325,47], EntityZombie['Zombie'/86, l='MpServer', x=85,56, y=41,00, z=324,72], EntitySkeleton['Skeleton'/81, l='MpServer', x=93,81, y=24,00, z=319,46], EntitySheep['Sheep'/80, l='MpServer', x=81,66, y=69,00, z=294,50], EntityZombie['Zombie'/83, l='MpServer', x=86,63, y=41,00, z=315,66], EntityZombie['Zombie'/82, l='MpServer', x=85,59, y=41,00, z=316,34], EntityZombie['Zombie'/334, l='MpServer', x=-59,38, y=22,02, z=209,70], EntityZombie['Zombie'/335, l='MpServer', x=-52,31, y=23,00, z=216,34], EntityZombie['Zombie'/89, l='MpServer', x=83,72, y=25,00, z=347,22], EntityCreeper['Creeper'/88, l='MpServer', x=85,41, y=25,00, z=351,06], EntityCreeper['Creeper'/91, l='MpServer', x=82,53, y=44,00, z=347,00], EntityCreeper['Creeper'/90, l='MpServer', x=93,38, y=38,00, z=336,06], EntityClientPlayerMP['Player201'/323, l='MpServer', x=19,54, y=68,62, z=286,89], EntityCreeper['Creeper'/110, l='MpServer', x=97,47, y=28,00, z=311,75], EntityCreeper['Creeper'/111, l='MpServer', x=96,59, y=24,00, z=318,59], EntitySpider['Spider'/356, l='MpServer', x=-20,50, y=39,00, z=259,50], EntityBat['Bat'/357, l='MpServer', x=-25,25, y=40,10, z=265,25], EntityCreeper['Creeper'/358, l='MpServer', x=-17,06, y=36,00, z=287,00], EntityBat['Bat'/352, l='MpServer', x=-25,75, y=36,10, z=212,25], EntitySpider['Spider'/114, l='MpServer', x=96,53, y=38,00, z=334,72], EntityItem['item.tile.rail'/353, l='MpServer', x=-31,47, y=38,13, z=264,81], EntitySheep['Sheep'/113, l='MpServer', x=97,60, y=72,00, z=301,03], EntitySkeleton['Skeleton'/354, l='MpServer', x=-24,30, y=38,02, z=266,30], EntitySpider['Spider'/355, l='MpServer', x=-22,03, y=39,00, z=261,66], EntityWolf['Wolf'/122, l='MpServer', x=96,50, y=63,00, z=354,69]]
Retry entities: 0 total; []
Server brand: fml,forge
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:440)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2298)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:844)
at net.minecraft.client.main.Main.main(Main.java:93)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:57)
at net.minecraft.launchwrapper.Launch.main(Launch.java:18)

-- System Details --
Details:
Minecraft Version: 1.6.2
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.7.0_25, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 1751757312 bytes (1670 MB) / 2112618496 bytes (2014 MB) up to 4260102144 bytes (4062 MB)
JVM Flags: 6 total; -Xincgc -Xmx1024M -Xms1024M -Xincgc -Xms2048m -Xmx4096m
AABB Pool Size: 16934 (948304 bytes; 0 MB) allocated, 1174 (65744 bytes; 0 MB) used
Suspicious classes: FML and Forge are installed
IntCache: cache: 0, tcache: 0, allocated: 3, tallocated: 63
FML: MCP v8.04 FML v6.2.19.789 Minecraft Forge 9.10.0.789 4 mods loaded, 4 mods active
mcp{8.04} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
FML{6.2.19.789} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{9.10.0.789} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
fasttravelmod{0.0.1} [FastTravelMod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Launched Version: 1.6
LWJGL: 2.9.0
OpenGL: GeForce GTX 570/PCIe/SSE2 GL version 4.3.0, NVIDIA Corporation
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Pack: Default
Current Language: English (US)
Profiler Position: N/A (disabled)
Vec3 Pool Size: 1614 (90384 bytes; 0 MB) allocated, 348 (19488 bytes; 0 MB) used

 

Posted
java.lang.NullPointerException

at net.minecraft.inventory.Slot.getStack(Slot.java:91)

at net.minecraft.client.gui.inventory.GuiContainer.drawSlotInventory(GuiContainer.java:353)

at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:132)

 

basicly its telling you that its trying to draw an item on the screen the a Slot return null and it isnt expecting that

 

@Override
public TileEntity createNewTileEntity(World world) {
	return null;
}

 

thsi should be returning a new TileEntityTravel, because if you dont you will never create your tile entity.

 

 

also add thsi to your block because else it will never even ASK to create a new tile entity

 

@Override
public boolean hasTileEntity(int meta) {
	return true;
}

those bugs are kinda shitty becasue they tell you something but the root cause is totally not there

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Posted

I'm going to die for this mod  ::)

 

So I changed my FastTravelBlock to

 

 

package org.setcore.fasttravel;

import net.minecraft.block.Block;
import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.entity.player.EntityPlayer;
import org.setcore.fasttravel.TileEntityTravel;

import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;

public class FastTravelBlock extends BlockContainer
{

public FastTravelBlock(int id, Material material) 
{
	super(id, material);
}


public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int i, float a, float b, float c)
{
       player.openGui(FastTravelMod.instance, 0, world, x, y, z);
        return true;
}

@Override
public boolean hasTileEntity(int meta) {
		return true;
	}

@Override
public TileEntity createNewTileEntity(World world) {
	TileEntityTravel te = null;  // Don't know what the fuck to do here ....!?
	return te;
}

}

 

 

But I don't know what to do in createNewTileEntity....

 

My errorlog but it's seems like it's about the same

 

 

Jul 29, 2013 4:09:13 PM net.minecraft.launchwrapper.LogWrapper log
INFO: Using tweak class name cpw.mods.fml.common.launcher.FMLTweaker
2013-07-29 16:09:13 [iNFO] [ForgeModLoader] Forge Mod Loader version 6.2.19.789 for Minecraft 1.6.2 loading
2013-07-29 16:09:13 [iNFO] [ForgeModLoader] Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_25, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7
2013-07-29 16:09:13 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
2013-07-29 16:09:13 [iNFO] [sTDOUT] Loaded 39 rules from AccessTransformer config file fml_at.cfg
2013-07-29 16:09:14 [iNFO] [sTDOUT] Loaded 107 rules from AccessTransformer config file forge_at.cfg
2013-07-29 16:09:14 [sEVERE] [ForgeModLoader] The binary patch set is missing. Things are probably about to go very wrong.
2013-07-29 16:09:14 [iNFO] [ForgeModLoader] Launching wrapped minecraft
2013-07-29 16:09:20 [iNFO] [Minecraft-Client] Setting user: Player402
2013-07-29 16:09:20 [iNFO] [Minecraft-Client] (Session ID is null)
2013-07-29 16:09:20 [iNFO] [Minecraft-Client] LWJGL Version: 2.9.0
2013-07-29 16:09:21 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default
2013-07-29 16:09:21 [iNFO] [sTDOUT] 
2013-07-29 16:09:21 [iNFO] [sTDOUT] Starting up SoundSystem...
2013-07-29 16:09:21 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization
2013-07-29 16:09:21 [iNFO] [sTDOUT] MinecraftForge v9.10.0.789 Initialized
2013-07-29 16:09:21 [iNFO] [ForgeModLoader] MinecraftForge v9.10.0.789 Initialized
2013-07-29 16:09:21 [iNFO] [sTDOUT] Replaced 101 ore recipies
2013-07-29 16:09:21 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization
2013-07-29 16:09:21 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\Louven\Desktop\forge\mcp\jars\config\logging.properties
2013-07-29 16:09:21 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL
2013-07-29 16:09:21 [iNFO] [sTDOUT] Initializing LWJGL OpenAL
2013-07-29 16:09:21 [iNFO] [sTDOUT]     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
2013-07-29 16:09:21 [iNFO] [ForgeModLoader] Searching C:\Users\Louven\Desktop\forge\mcp\jars\mods for mods
2013-07-29 16:09:22 [iNFO] [sTDOUT] OpenAL initialized.
2013-07-29 16:09:22 [iNFO] [sTDOUT] 
2013-07-29 16:09:23 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load
2013-07-29 16:09:23 [iNFO] [mcp] Activating mod mcp
2013-07-29 16:09:23 [iNFO] [FML] Activating mod FML
2013-07-29 16:09:23 [iNFO] [Forge] Activating mod Forge
2013-07-29 16:09:23 [iNFO] [fasttravelmod] Activating mod fasttravelmod
2013-07-29 16:09:23 [iNFO] [ForgeModLoader] Registering Forge Packet Handler
2013-07-29 16:09:23 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler
2013-07-29 16:09:23 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0
2013-07-29 16:09:23 [sEVERE] [Minecraft-Client] Using missing texture, unable to load: minecraft:textures/blocks/MISSING_ICON_TILE_500_FastTravelBlock.png
2013-07-29 16:09:24 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 4 mods
2013-07-29 16:09:24 [WARNING] [FastTravelMod] Mod FastTravelMod is missing a pack.mcmeta file, things may not work well
2013-07-29 16:09:24 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:FastTravelMod
2013-07-29 16:09:24 [sEVERE] [Minecraft-Client] Using missing texture, unable to load: minecraft:textures/blocks/MISSING_ICON_TILE_500_FastTravelBlock.png
2013-07-29 16:09:24 [iNFO] [sTDOUT] 
2013-07-29 16:09:24 [iNFO] [sTDOUT] SoundSystem shutting down...
2013-07-29 16:09:24 [iNFO] [sTDOUT]     Author: Paul Lamb, www.paulscode.com
2013-07-29 16:09:24 [iNFO] [sTDOUT] 
2013-07-29 16:09:24 [iNFO] [sTDOUT] 
2013-07-29 16:09:24 [iNFO] [sTDOUT] Starting up SoundSystem...
2013-07-29 16:09:24 [iNFO] [sTDOUT] Initializing LWJGL OpenAL
2013-07-29 16:09:24 [iNFO] [sTDOUT]     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
2013-07-29 16:09:24 [iNFO] [sTDOUT] OpenAL initialized.
2013-07-29 16:09:25 [iNFO] [sTDOUT] 
2013-07-29 16:09:25 [sEVERE] [Minecraft-Client] Realms: Invalid session id
2013-07-29 16:09:30 [iNFO] [Minecraft-Server] Starting integrated minecraft server version 1.6.2
2013-07-29 16:09:30 [iNFO] [Minecraft-Server] Generating keypair
2013-07-29 16:09:31 [iNFO] [ForgeModLoader] Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@6738ba51)
2013-07-29 16:09:31 [iNFO] [ForgeModLoader] Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@6738ba51)
2013-07-29 16:09:31 [iNFO] [ForgeModLoader] Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@6738ba51)
2013-07-29 16:09:31 [iNFO] [Minecraft-Server] Preparing start region for level 0
2013-07-29 16:09:32 [iNFO] [sTDOUT] loading single player
2013-07-29 16:09:32 [iNFO] [Minecraft-Server] Player402[/127.0.0.1:0] logged in with entity id 323 at (19.53130895767393, 67.0, 286.8898876945851)
2013-07-29 16:09:32 [iNFO] [Minecraft-Server] Player402 joined the game
2013-07-29 16:09:32 [iNFO] [sTDOUT] Setting up custom skins
2013-07-29 16:09:33 [iNFO] [sTDERR] net.minecraft.util.ReportedException: Ticking memory connection
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:63)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:689)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:585)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
2013-07-29 16:09:33 [iNFO] [sTDERR] Caused by: java.lang.NullPointerException
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.inventory.Slot.getStack(Slot.java:91)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.inventory.Container.getInventory(Container.java:69)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.inventory.Container.addCraftingToCrafters(Container.java:55)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at cpw.mods.fml.common.network.NetworkRegistry.openRemoteGui(NetworkRegistry.java:321)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at cpw.mods.fml.common.network.FMLNetworkHandler.openGui(FMLNetworkHandler.java:352)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2461)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at org.setcore.fasttravel.FastTravelBlock.onBlockActivated(FastTravelBlock.java:23)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.item.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:416)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.network.NetServerHandler.handlePlace(NetServerHandler.java:554)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.network.packet.Packet15Place.processPacket(Packet15Place.java:79)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:141)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:54)
2013-07-29 16:09:33 [iNFO] [sTDERR] 	... 6 more
2013-07-29 16:09:33 [sEVERE] [Minecraft-Server] Encountered an unexpected exception ReportedException
net.minecraft.util.ReportedException: Ticking memory connection
at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:63)
at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:689)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:585)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482)
at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
Caused by: java.lang.NullPointerException
at net.minecraft.inventory.Slot.getStack(Slot.java:91)
at net.minecraft.inventory.Container.getInventory(Container.java:69)
at net.minecraft.inventory.Container.addCraftingToCrafters(Container.java:55)
at cpw.mods.fml.common.network.NetworkRegistry.openRemoteGui(NetworkRegistry.java:321)
at cpw.mods.fml.common.network.FMLNetworkHandler.openGui(FMLNetworkHandler.java:352)
at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2461)
at org.setcore.fasttravel.FastTravelBlock.onBlockActivated(FastTravelBlock.java:23)
at net.minecraft.item.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:416)
at net.minecraft.network.NetServerHandler.handlePlace(NetServerHandler.java:554)
at net.minecraft.network.packet.Packet15Place.processPacket(Packet15Place.java:79)
at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:141)
at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:54)
... 6 more
2013-07-29 16:09:33 [sEVERE] [Minecraft-Server] This crash report has been saved to: C:\Users\Louven\Desktop\forge\mcp\jars\.\crash-reports\crash-2013-07-29_16.09.33-server.txt
2013-07-29 16:09:33 [iNFO] [Minecraft-Server] Stopping server
2013-07-29 16:09:33 [iNFO] [Minecraft-Server] Saving players
2013-07-29 16:09:33 [iNFO] [Minecraft-Server] Player402 left the game
2013-07-29 16:09:33 [iNFO] [Minecraft-Server] Saving worlds
2013-07-29 16:09:33 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld
2013-07-29 16:09:33 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether
2013-07-29 16:09:33 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End
2013-07-29 16:09:34 [iNFO] [ForgeModLoader] Unloading dimension 0
2013-07-29 16:09:34 [iNFO] [ForgeModLoader] Unloading dimension -1
2013-07-29 16:09:34 [iNFO] [ForgeModLoader] Unloading dimension 1
2013-07-29 16:09:34 [iNFO] [ForgeModLoader] The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.
2013-07-29 16:09:34 [iNFO] [sTDERR] net.minecraft.util.ReportedException: Rendering screen
2013-07-29 16:09:34 [iNFO] [sTDERR] 	at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1045)
2013-07-29 16:09:34 [iNFO] [sTDERR] 	at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:934)
2013-07-29 16:09:34 [iNFO] [sTDERR] 	at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:826)
2013-07-29 16:09:34 [iNFO] [sTDERR] 	at net.minecraft.client.main.Main.main(Main.java:93)
2013-07-29 16:09:34 [iNFO] [sTDERR] 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2013-07-29 16:09:34 [iNFO] [sTDERR] 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 16:09:34 [iNFO] [sTDERR] 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 16:09:34 [iNFO] [sTDERR] 	at java.lang.reflect.Method.invoke(Unknown Source)
2013-07-29 16:09:34 [iNFO] [sTDERR] 	at net.minecraft.launchwrapper.Launch.launch(Launch.java:57)
2013-07-29 16:09:34 [iNFO] [sTDERR] 	at net.minecraft.launchwrapper.Launch.main(Launch.java:18)
2013-07-29 16:09:34 [iNFO] [sTDERR] Caused by: java.lang.NullPointerException
2013-07-29 16:09:34 [iNFO] [sTDERR] 	at net.minecraft.inventory.Slot.getStack(Slot.java:91)
2013-07-29 16:09:34 [iNFO] [sTDERR] 	at net.minecraft.client.gui.inventory.GuiContainer.drawSlotInventory(GuiContainer.java:353)
2013-07-29 16:09:34 [iNFO] [sTDERR] 	at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:132)
2013-07-29 16:09:34 [iNFO] [sTDERR] 	at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1036)
2013-07-29 16:09:34 [iNFO] [sTDERR] 	... 9 more
2013-07-29 16:09:34 [iNFO] [sTDOUT] ---- Minecraft Crash Report ----
2013-07-29 16:09:34 [iNFO] [sTDOUT] // Don't be sad, have a hug! <3
2013-07-29 16:09:34 [iNFO] [sTDOUT] 
2013-07-29 16:09:34 [iNFO] [sTDOUT] Time: 29.07.13 16:09
2013-07-29 16:09:34 [iNFO] [sTDOUT] Description: Rendering screen
2013-07-29 16:09:34 [iNFO] [sTDOUT] 
2013-07-29 16:09:34 [iNFO] [sTDOUT] java.lang.NullPointerException
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.inventory.Slot.getStack(Slot.java:91)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.client.gui.inventory.GuiContainer.drawSlotInventory(GuiContainer.java:353)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:132)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1036)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:934)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:826)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.client.main.Main.main(Main.java:93)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at java.lang.reflect.Method.invoke(Unknown Source)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.launchwrapper.Launch.launch(Launch.java:57)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.launchwrapper.Launch.main(Launch.java:18)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 
2013-07-29 16:09:34 [iNFO] [sTDOUT] 
2013-07-29 16:09:34 [iNFO] [sTDOUT] A detailed walkthrough of the error, its code path and all known details is as follows:
2013-07-29 16:09:34 [iNFO] [sTDOUT] ---------------------------------------------------------------------------------------
2013-07-29 16:09:34 [iNFO] [sTDOUT] 
2013-07-29 16:09:34 [iNFO] [sTDOUT] -- Head --
2013-07-29 16:09:34 [iNFO] [sTDOUT] Stacktrace:
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.inventory.Slot.getStack(Slot.java:91)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.client.gui.inventory.GuiContainer.drawSlotInventory(GuiContainer.java:353)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:132)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 
2013-07-29 16:09:34 [iNFO] [sTDOUT] -- Screen render details --
2013-07-29 16:09:34 [iNFO] [sTDOUT] Details:
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Screen name: org.setcore.fasttravel.GuiTravelMark
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Mouse location: Scaled: (213, 119). Absolute: (427, 240)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Screen size: Scaled: (427, 240). Absolute: (854, 480). Scale factor of 2
2013-07-29 16:09:34 [iNFO] [sTDOUT] 
2013-07-29 16:09:34 [iNFO] [sTDOUT] -- Affected level --
2013-07-29 16:09:34 [iNFO] [sTDOUT] Details:
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Level name: MpServer
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	All players: 1 total; [EntityClientPlayerMP['Player402'/323, l='MpServer', x=19,53, y=68,62, z=286,89]]
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Chunk stats: MultiplayerChunkCache: 150
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Level seed: 0
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Level generator: ID 00 - default, ver 1. Features enabled: false
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Level generator options: 
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Level spawn location: World: (183,64,232), Chunk: (at 7,4,8 in 11,14; contains blocks 176,0,224 to 191,255,239), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Level time: 4894 game time, 4894 day time
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Level dimension: 0
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Level storage version: 0x00000 - Unknown?
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Forced entities: 85 total; [EntityMinecartChest['entity.MinecartChest.name'/0, l='MpServer', x=-1,50, y=39,50, z=234,50], EntityCreeper['Creeper'/1, l='MpServer', x=-1,47, y=38,21, z=306,16], EntityZombie['Zombie'/2, l='MpServer', x=-3,50, y=37,84, z=310,44], EntityCreeper['Creeper'/3, l='MpServer', x=-4,38, y=38,49, z=309,94], EntityZombie['Zombie'/4, l='MpServer', x=-3,84, y=38,14, z=305,13], EntityPig['Pig'/5, l='MpServer', x=-3,06, y=66,00, z=332,06], EntityPig['Pig'/6, l='MpServer', x=-7,97, y=68,00, z=333,09], EntityPig['Pig'/7, l='MpServer', x=-3,50, y=67,00, z=337,19], EntityPig['Pig'/8, l='MpServer', x=-9,31, y=63,00, z=353,88], EntitySkeleton['Skeleton'/15, l='MpServer', x=11,88, y=42,00, z=262,50], EntitySkeleton['Skeleton'/17, l='MpServer', x=7,70, y=32,02, z=276,84], EntityCreeper['Creeper'/16, l='MpServer', x=12,59, y=41,00, z=260,59], EntityBat['Bat'/18, l='MpServer', x=11,75, y=42,10, z=284,25], EntityItem['item.item.seeds'/21, l='MpServer', x=17,16, y=63,13, z=311,47], EntitySheep['Sheep'/22, l='MpServer', x=30,31, y=63,00, z=314,97], EntityCreeper['Creeper'/31, l='MpServer', x=37,00, y=38,00, z=352,31], EntitySheep['Sheep'/30, l='MpServer', x=41,50, y=63,00, z=317,38], EntityZombie['Zombie'/32, l='MpServer', x=36,31, y=38,00, z=353,16], EntitySheep['Sheep'/39, l='MpServer', x=59,19, y=63,00, z=235,41], EntitySheep['Sheep'/42, l='MpServer', x=49,19, y=64,00, z=280,34], EntitySheep['Sheep'/43, l='MpServer', x=54,13, y=65,00, z=294,44], EntitySquid['Squid'/40, l='MpServer', x=56,53, y=56,00, z=261,79], EntitySheep['Sheep'/41, l='MpServer', x=52,50, y=62,38, z=274,03], EntitySheep['Sheep'/46, l='MpServer', x=48,16, y=64,00, z=330,88], EntitySheep['Sheep'/44, l='MpServer', x=52,44, y=64,00, z=290,56], EntitySheep['Sheep'/45, l='MpServer', x=54,50, y=65,00, z=323,50], EntitySheep['Sheep'/55, l='MpServer', x=67,84, y=63,00, z=225,47], EntitySheep['Sheep'/54, l='MpServer', x=65,50, y=64,00, z=219,50], EntityEnderman['Enderman'/53, l='MpServer', x=68,28, y=64,00, z=216,50], EntityZombie['Zombie'/58, l='MpServer', x=76,44, y=44,00, z=361,00], EntitySheep['Sheep'/57, l='MpServer', x=64,34, y=63,00, z=341,91], EntitySheep['Sheep'/56, l='MpServer', x=73,52, y=63,00, z=226,65], EntitySkeleton['Skeleton'/343, l='MpServer', x=-43,72, y=52,00, z=223,75], EntityBat['Bat'/342, l='MpServer', x=-32,25, y=37,10, z=207,44], EntityZombie['Zombie'/341, l='MpServer', x=-49,25, y=53,00, z=246,22], EntitySpider['Spider'/340, l='MpServer', x=-50,91, y=52,00, z=239,62], EntityBat['Bat'/71, l='MpServer', x=88,41, y=15,10, z=238,16], EntitySkeleton['Skeleton'/339, l='MpServer', x=-52,44, y=37,00, z=253,06], EntityCreeper['Creeper'/338, l='MpServer', x=-56,91, y=54,00, z=233,38], EntityCreeper['Creeper'/337, l='MpServer', x=-52,34, y=37,00, z=240,06], EntityZombie['Zombie'/336, l='MpServer', x=-54,56, y=23,00, z=215,90], EntityZombie['Zombie'/351, l='MpServer', x=-46,13, y=39,00, z=290,41], EntityBat['Bat'/76, l='MpServer', x=84,28, y=14,26, z=246,08], EntityZombie['Zombie'/350, l='MpServer', x=-45,47, y=40,00, z=270,97], EntitySheep['Sheep'/77, l='MpServer', x=81,53, y=70,00, z=301,45], EntityZombie['Zombie'/349, l='MpServer', x=-41,06, y=40,00, z=269,53], EntitySheep['Sheep'/78, l='MpServer', x=86,75, y=70,00, z=294,53], EntitySkeleton['Skeleton'/348, l='MpServer', x=-42,59, y=36,00, z=258,31], EntitySheep['Sheep'/79, l='MpServer', x=88,75, y=71,00, z=298,22], EntityZombie['Zombie'/347, l='MpServer', x=-46,56, y=54,00, z=244,50], EntityBat['Bat'/72, l='MpServer', x=92,25, y=15,10, z=230,41], EntityZombie['Zombie'/346, l='MpServer', x=-43,28, y=57,00, z=248,59], EntityBat['Bat'/73, l='MpServer', x=91,30, y=16,23, z=236,47], EntitySkeleton['Skeleton'/345, l='MpServer', x=-46,50, y=37,00, z=251,50], EntityBat['Bat'/74, l='MpServer', x=92,75, y=15,71, z=234,47], EntityBat['Bat'/344, l='MpServer', x=-41,47, y=40,10, z=250,88], EntityBat['Bat'/75, l='MpServer', x=94,04, y=17,98, z=237,82], EntityBat['Bat'/85, l='MpServer', x=89,50, y=29,10, z=322,50], EntityZombie['Zombie'/84, l='MpServer', x=86,63, y=41,00, z=315,66], EntityZombie['Zombie'/87, l='MpServer', x=85,56, y=41,00, z=324,72], EntityMinecartChest['entity.MinecartChest.name'/86, l='MpServer', x=94,50, y=38,50, z=334,47], EntitySheep['Sheep'/81, l='MpServer', x=81,66, y=69,00, z=294,50], EntitySheep['Sheep'/80, l='MpServer', x=92,25, y=71,00, z=301,09], EntityZombie['Zombie'/83, l='MpServer', x=85,59, y=41,00, z=316,34], EntitySkeleton['Skeleton'/82, l='MpServer', x=93,72, y=24,00, z=318,97], EntityZombie['Zombie'/335, l='MpServer', x=-59,38, y=22,23, z=209,70], EntityCreeper['Creeper'/92, l='MpServer', x=82,53, y=44,00, z=347,00], EntityCreeper['Creeper'/89, l='MpServer', x=85,41, y=25,00, z=351,06], EntityZombie['Zombie'/88, l='MpServer', x=88,63, y=40,00, z=325,64], EntityCreeper['Creeper'/91, l='MpServer', x=93,38, y=38,00, z=336,06], EntityZombie['Zombie'/90, l='MpServer', x=83,72, y=25,00, z=347,22], EntityClientPlayerMP['Player402'/323, l='MpServer', x=19,53, y=68,62, z=286,89], EntitySheep['Sheep'/110, l='MpServer', x=97,56, y=72,00, z=300,34], EntityCreeper['Creeper'/111, l='MpServer', x=97,47, y=28,00, z=311,75], EntitySpider['Spider'/356, l='MpServer', x=-20,50, y=39,00, z=259,50], EntityBat['Bat'/357, l='MpServer', x=-25,25, y=40,10, z=265,25], EntityCreeper['Creeper'/358, l='MpServer', x=-17,06, y=36,00, z=287,00], EntityBat['Bat'/352, l='MpServer', x=-25,75, y=36,10, z=212,25], EntitySpider['Spider'/114, l='MpServer', x=96,53, y=38,00, z=334,72], EntityItem['item.tile.rail'/353, l='MpServer', x=-31,50, y=38,13, z=264,81], EntitySheep['Sheep'/113, l='MpServer', x=99,53, y=72,00, z=305,84], EntitySkeleton['Skeleton'/354, l='MpServer', x=-24,31, y=38,31, z=266,31], EntityCreeper['Creeper'/112, l='MpServer', x=96,59, y=24,00, z=318,59], EntitySpider['Spider'/355, l='MpServer', x=-22,03, y=39,00, z=261,66], EntityWolf['Wolf'/122, l='MpServer', x=96,50, y=63,00, z=354,69]]
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Retry entities: 0 total; []
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Server brand: fml,forge
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Server type: Integrated singleplayer server
2013-07-29 16:09:34 [iNFO] [sTDOUT] Stacktrace:
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:440)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2298)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:844)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.client.main.Main.main(Main.java:93)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at java.lang.reflect.Method.invoke(Unknown Source)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.launchwrapper.Launch.launch(Launch.java:57)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	at net.minecraft.launchwrapper.Launch.main(Launch.java:18)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 
2013-07-29 16:09:34 [iNFO] [sTDOUT] -- System Details --
2013-07-29 16:09:34 [iNFO] [sTDOUT] Details:
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Minecraft Version: 1.6.2
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Operating System: Windows 7 (amd64) version 6.1
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Java Version: 1.7.0_25, Oracle Corporation
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Memory: 1802422448 bytes (1718 MB) / 2112618496 bytes (2014 MB) up to 4260102144 bytes (4062 MB)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	JVM Flags: 6 total; -Xincgc -Xmx1024M -Xms1024M -Xincgc -Xms2048m -Xmx4096m
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	AABB Pool Size: 16934 (948304 bytes; 0 MB) allocated, 1173 (65688 bytes; 0 MB) used
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Suspicious classes: FML and Forge are installed
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	IntCache: cache: 0, tcache: 0, allocated: 1, tallocated: 63
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	FML: MCP v8.04 FML v6.2.19.789 Minecraft Forge 9.10.0.789 4 mods loaded, 4 mods active
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	mcp{8.04} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	FML{6.2.19.789} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Forge{9.10.0.789} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	fasttravelmod{0.0.1} [FastTravelMod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Launched Version: 1.6
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	LWJGL: 2.9.0
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	OpenGL: GeForce GTX 570/PCIe/SSE2 GL version 4.3.0, NVIDIA Corporation
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Is Modded: Definitely; Client brand changed to 'fml,forge'
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Type: Client (map_client.txt)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Resource Pack: Default
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Current Language: English (US)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Profiler Position: N/A (disabled)
2013-07-29 16:09:34 [iNFO] [sTDOUT] 	Vec3 Pool Size: 2791 (156296 bytes; 0 MB) allocated, 315 (17640 bytes; 0 MB) used
2013-07-29 16:09:34 [iNFO] [sTDOUT] #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Louven\Desktop\forge\mcp\jars\.\crash-reports\crash-2013-07-29_16.09.34-client.txt
AL lib: (EE) alc_cleanup: 1 device not closed

 

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I've been having multiple crashes (3 times today and once yesterday) for seemingly no reason. All within a few minutes of each other. All crash reports look like they're the same issue, so I'll only post the most recent crash. Crash Report is here. Any help would be greatly appreciated. 
    • java.lang.IllegalArgumentException: Can't find attribute minecraft:generic.attack_knockback having the same problem as this one: https://forums.minecraftforge.net/topic/151258-some-kind-of-issue-with-lycanites-mobs-and-the-knockback-attribute/ also my report on Lycanites Issue page(crash log included): https://gitlab.com/Lycanite/LycanitesMobs/-/issues/951
    • I just removed that mod as well and it's still stuck on 100% loading and does still not go past it. all of my modded maps are so unplayable, i like, have no idea what to do https://mclo.gs/XHWCu5M
    • Here is the newest crash report because I've been trying to fix the problem for hours, please help me also its "error code -1"   ---- Minecraft Crash Report ---- // Daisy, daisy... Time: 2024-11-27 15:43:43 Description: Rendering screen java.lang.NoClassDefFoundError: org/spongepowered/asm/synthetic/args/Args$1     at net.minecraft.client.gui.GuiGraphics.m_280677_(GuiGraphics.java:562) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.GuiGraphics.renderTooltip(GuiGraphics.java:556) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_280072_(AbstractContainerScreen.java:163) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:attributeslib.mixins.json:client.AbstractContainerScreenMixin,pl:mixin:APP:majruszlibrary-forge.mixins.json:MixinAbstractContainerScreen,plasmixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.screens.inventoasasry.CreativeModeInventoryScreen.m_88315_(CreativeModeInventoryScreen.java:650) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:classloading,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.screens.Screen.m_280264_(Screen.java:109) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:patchouli_xplat.mixins.json:client.AccessorScreen,pl:mixin:APP:CustomCursor-comm-common.mixins.json:ScreenIgnoreRenderAfterOverlayMixin,pl:mixin:APP:CustomCursor-comm-common.mixins.json:ScreenMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraftforge.client.ForgeHooksClient.drawScreenInternal(ForgeHooksClient.java:427) ~[forge-1.20.1-47.3.0-universal.jar%23355!/:?] {re:classloading,re:mixin}     at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:420) ~[forge-1.20.1-47.3.0-universal.jar%23355!/:?] {re:classloading,re:mixin}     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:965) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:jeg.mixins.json:client.GameRendererMixin,pl:mixin:APP:alexscaves.mixins.json:client.GameRendererMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.compat.MixinGameRenderer,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:alexscaves.mixins.json:client.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:majruszlibrary-common.mixins.json:MixinMinecraft,pl:mixin:APP:jeg.mixins.json:client.MinecraftMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:alexscaves.mixins.json:client.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:majruszlibrary-common.mixins.json:MixinMinecraft,pl:mixin:APP:jeg.mixins.json:client.MinecraftMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:classloading,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} Caused by: java.lang.ClassNotFoundException: org.spongepowered.asm.synthetic.args.Args$1     at jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) ~[?:?] {}     at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] {}     at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:137) ~[securejarhandler-2.1.10.jar:?] {}     at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] {}     at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:137) ~[securejarhandler-2.1.10.jar:?] {}     at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] {}     ... 26 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Suspected Mods: NONE Stacktrace:     at net.minecraft.client.gui.GuiGraphics.m_280677_(GuiGraphics.java:562) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.GuiGraphics.renderTooltip(GuiGraphics.java:556) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_280072_(AbstractContainerScreen.java:163) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:attributeslib.mixins.json:client.AbstractContainerScreenMixin,pl:mixin:APP:majruszlibrary-forge.mixins.json:MixinAbstractContainerScreen,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.screens.inventory.CreativeModeInventoryScreen.m_88315_(CreativeModeInventoryScreen.java:650) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:classloading,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.screens.Screen.m_280264_(Screen.java:109) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:patchouli_xplat.mixins.json:client.AccessorScreen,pl:mixin:APP:CustomCursor-comm-common.mixins.json:ScreenIgnoreRenderAfterOverlayMixin,pl:mixin:APP:CustomCursor-comm-common.mixins.json:ScreenMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraftforge.client.ForgeHooksClient.drawScreenInternal(ForgeHooksClient.java:427) ~[forge-1.20.1-47.3.0-universal.jar%23355!/:?] {re:classloading,re:mixin}     at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:420) ~[forge-1.20.1-47.3.0-universal.jar%23355!/:?] {re:classloading,re:mixin} -- Screen render details -- Details:     Screen name: net.minecraft.client.gui.screens.inventory.CreativeModeInventoryScreen     Mouse location: Scaled: (273, 153). Absolute: (546.000000, 307.000000)     Screen size: Scaled: (547, 308). Absolute: (1093, 615). Scale factor of 2.000000 Stacktrace:     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:965) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:jeg.mixins.json:client.GameRendererMixin,pl:mixin:APP:alexscaves.mixins.json:client.GameRendererMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.compat.MixinGameRenderer,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:alexscaves.mixins.json:client.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:majruszlibrary-common.mixins.json:MixinMinecraft,pl:mixin:APP:jeg.mixins.json:client.MinecraftMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:alexscaves.mixins.json:client.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:majruszlibrary-common.mixins.json:MixinMinecraft,pl:mixin:APP:jeg.mixins.json:client.MinecraftMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:classloading,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} -- Affected level -- Details:     All players: 1 total; [LocalPlayer['muglad'/4, l='ClientLevel', x=11.34, y=-62.50, z=7.05]]     Chunk stats: 529, 313     Level dimension: minecraft:overworld     Level spawn location: World: (0,-63,0), Section: (at 0,1,0 in 0,-4,0; chunk contains blocks 0,-64,0 to 15,319,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511)     Level time: 522 game time, 522 day time     Server brand: forge     Server type: Integrated singleplayer server Stacktrace:     at net.minecraft.client.multiplayer.ClientLevel.m_6026_(ClientLevel.java:455) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:citadel.mixins.json:client.ClientLevelMixin,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:majruszlibrary-common.mixins.json:MixinClientLevel,pl:mixin:APP:starlight.mixins.json:client.world.ClientLevelMixin,pl:mixin:APP:alexscaves.mixins.json:client.ClientLevelMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91354_(Minecraft.java:2319) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:alexscaves.mixins.json:client.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:majruszlibrary-common.mixins.json:MixinMinecraft,pl:mixin:APP:jeg.mixins.json:client.MinecraftMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:735) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:alexscaves.mixins.json:client.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:majruszlibrary-common.mixins.json:MixinMinecraft,pl:mixin:APP:jeg.mixins.json:client.MinecraftMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:classloading,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} -- Last reload -- Details:     Reload number: 1     Reload reason: initial     Finished: Yes     Packs: vanilla, mod_resources -- System Details -- Details:     Minecraft Version: 1.20.1     Minecraft Version ID: 1.20.1     Operating System: Windows 11 (amd64) version 10.0     Java Version: 17.0.8, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 1400903168 bytes (1336 MiB) / 3370123264 bytes (3214 MiB) up to 4261412864 bytes (4064 MiB)     CPUs: 4     Processor Vendor: GenuineIntel     Processor Name: 11th Gen Intel(R) Core(TM) i3-1115G4 @ 3.00GHz     Identifier: Intel64 Family 6 Model 140 Stepping 1     Microarchitecture: Tiger Lake     Frequency (GHz): 3.00     Number of physical packages: 1     Number of physical CPUs: 2     Number of logical CPUs: 4     Graphics card #0 name: Intel(R) UHD Graphics     Graphics card #0 vendor: Intel Corporation (0x8086)     Graphics card #0 VRAM (MB): 128.00     Graphics card #0 deviceId: 0x9a78     Graphics card #0 versionInfo: DriverVersion=31.0.101.5186     Memory slot #0 capacity (MB): 4096.00     Memory slot #0 clockSpeed (GHz): 3.20     Memory slot #0 type: DDR4     Memory slot #1 capacity (MB): 4096.00     Memory slot #1 clockSpeed (GHz): 3.20     Memory slot #1 type: DDR4     Virtual memory max (MB): 19346.77     Virtual memory used (MB): 17116.04     Swap memory total (MB): 11511.14     Swap memory used (MB): 2066.14     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx4064m -Xms256m     Launched Version: forge-47.3.0     Backend library: LWJGL version 3.3.1 build 7     Backend API: Intel(R) UHD Graphics GL version 4.6.0 - Build 31.0.101.5186, Intel     Window size: 1093x615     GL Caps: Using framebuffer using OpenGL 3.2     GL debug messages:      Using VBOs: Yes     Is Modded: Definitely; Client brand changed to 'forge'; Server brand changed to 'forge'     Type: Integrated Server (map_client.txt)     Graphics mode: fast     Resource Packs:      Current Language: en_us     CPU: 4x 11th Gen Intel(R) Core(TM) i3-1115G4 @ 3.00GHz     Server Running: true     Player Count: 1 / 8; [ServerPlayer['muglad'/4, l='ServerLevel[New Worldassssssssssssasasas]', x=11.34, y=-62.50, z=7.05]]     Data Packs: vanilla, mod:elevated_enchantment, mod:treechopper (incompatible), mod:quarryplus, mod:geckolib, mod:playeranimator (incompatible), mod:placebo (incompatible), mod:modernfix (incompatible), mod:citadel (incompatible), mod:mixinextras (incompatible), mod:morebuckets, mod:botanypotstiers (incompatible), mod:bookshelf, mod:ironshulkerbox, mod:ironbookshelves, mod:raw_iron_block_can_be_heated, mod:iron_extra_things, mod:cloth_config (incompatible), mod:more_villager_trades, mod:ironbows (incompatible), mod:industrialforegoing (incompatible), mod:farmersdelight, mod:iron_ender_chests, mod:ironfurnaces, mod:structurecompass, mod:lionfishapi (incompatible), mod:mysticaladaptations, mod:maxxam_aiot, mod:structureexpansion (incompatible), mod:patchouli (incompatible), mod:ironchests (incompatible), mod:advancednetherite, mod:mysticalagriculturedelight, mod:gk_unbreakable (incompatible), mod:attributeslib (incompatible), mod:mysticalcustomization, mod:mifa, mod:resourcefullib (incompatible), mod:veinst, mod:architectury (incompatible), mod:squatgrow (incompatible), mod:xenotech (incompatible), mod:monolib (incompatible), mod:disenchanting_table (incompatible), mod:more_bows_and_arrows (incompatible), mod:hasteenchantment, mod:quad (incompatible), mod:ironcoals (incompatible), mod:framework, mod:nebs (incompatible), mod:majruszlibrary (incompatible), mod:fixed_netherite, mod:x_player_info (incompatible), mod:cucumber, mod:jeg (incompatible), mod:ironladders, mod:attributefix (incompatible), mod:configlibtxf, mod:fortune_on_netherite_forge, mod:caelus (incompatible), mod:enchantment_reveal (incompatible), mod:botanypots (incompatible), mod:starlight (incompatible), mod:grand_enchantment_table, mod:iron_bushes, mod:iron_fishing_rods, mod:puzzlesaccessapi, mod:forge, mod:more_wandering_trades, mod:mctb (incompatible), mod:mteg (incompatible), mod:mysticalagriculture, mod:mysticalagradditions, mod:matc, mod:mysticriftsmelt_ancient_debris, mod:more_underground_structures, mod:lucky (incompatible), mod:aurorasarsenal (incompatible), mod:alexscaves, mod:more_useful_copper (incompatible), mod:enchdesc (incompatible), mod:customcursorcomm (incompatible), mod:titanium (incompatible), mod:mysterious_mountain_lib (incompatible), mod:ironspawners, mod:enchlevellangpatch (incompatible), mod:vtaw_mw (incompatible), mod:mr_reds_morestructures, mod:watching, mod:ironbarrels, mod:mysticalexpansion, mod:easy_emerald, mod:more_beautiful_torches (incompatible), mod:universalenchants, mod:immediatelyfast (incompatible), mod:moremobvariants, mod:ferritecore (incompatible), mod:mvw, mod:puzzleslib, mod:overpowered_creative_items, mod:overloadedarmorbar (incompatible), mod:overflowingbars     Enabled Feature Flags: minecraft:vanilla     World Generation: Stable     ModLauncher: 10.0.9+10.0.9+main.dcd20f30     ModLauncher launch target: forgeclient     ModLauncher naming: srg     ModLauncher services:          mixin-0.8.5.jar mixin PLUGINSERVICE          eventbus-6.0.5.jar eventbus PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar slf4jfixer PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar object_holder_definalize PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar runtime_enum_extender PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar capability_token_subclass PLUGINSERVICE          accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar runtimedistcleaner PLUGINSERVICE          modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE      FML Language Providers:          [email protected]         lowcodefml@null         [email protected]         javafml@null     Mod List:          Elevated enchantment-forge_1.20.1.jar             |Elevated enchantment          |elevated_enchantment          |1.0.0               |DONE      |Manifest: NOSIGNATURE         treechopper-1.0.0.jar                             |TreeChopper                   |treechopper                   |1.0.0               |DONE      |Manifest: NOSIGNATURE         AdditionalEnchantedMiner-1.20.1-1201.1.90.jar     |QuarryPlus                    |quarryplus                    |1201.1.90           |DONE      |Manifest: ef:50:af:b3:03:e0:3e:70:a7:ef:78:77:a5:4d:d4:b5:07:ec:df:9d:d6:f3:12:13:c9:3c:cd:9a:0a:3e:6b:43         geckolib-forge-1.20.1-4.4.9.jar                   |GeckoLib 4                    |geckolib                      |4.4.9               |DONE      |Manifest: NOSIGNATURE         player-animation-lib-forge-1.0.2-rc1+1.20.jar     |Player Animator               |playeranimator                |1.0.2-rc1+1.20      |DONE      |Manifest: NOSIGNATURE         Placebo-1.20.1-8.6.2.jar                          |Placebo                       |placebo                       |8.6.2               |DONE      |Manifest: NOSIGNATURE         modernfix-forge-5.19.5+mc1.20.1.jar               |ModernFix                     |modernfix                     |5.19.5+mc1.20.1     |DONE      |Manifest: NOSIGNATURE         citadel-2.6.0-1.20.1.jar                          |Citadel                       |citadel                       |2.6.0               |DONE      |Manifest: NOSIGNATURE         mixinextras-forge-0.4.1.jar                       |MixinExtras                   |mixinextras                   |0.4.1               |DONE      |Manifest: NOSIGNATURE         MoreBuckets-1.20.1-4.0.4.jar                      |More Buckets                  |morebuckets                   |4.0.4               |DONE      |Manifest: NOSIGNATURE         BotanyPotsTiers-Forge-1.20.1-6.0.1.jar            |BotanyPotsTiers               |botanypotstiers               |6.0.1               |DONE      |Manifest: NOSIGNATURE         Bookshelf-Forge-1.20.1-20.2.13.jar                |Bookshelf                     |bookshelf                     |20.2.13             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         ironshulkerbox-1.20.1-5.3.2.jar                   |Iron Shulker Boxes            |ironshulkerbox                |1.20.1-5.3.2        |DONE      |Manifest: NOSIGNATURE         ironbookshelves-1.20.1-1.4.0-forge.jar            |Iron Bookshelves              |ironbookshelves               |1.20.1-1.4.0-forge  |DONE      |Manifest: NOSIGNATURE         raw_iron_block_can_heated-1.0.0-forge-1.20.1.jar  |Raw Iron Block can be heated  |raw_iron_block_can_be_heated  |1.0.0               |DONE      |Manifest: NOSIGNATURE         Iron Extra Things 1.0.6.jar                       |Iron Extra Things             |iron_extra_things             |1.0.5               |DONE      |Manifest: NOSIGNATURE         cloth-config-11.1.136-forge.jar                   |Cloth Config v10 API          |cloth_config                  |11.1.136            |DONE      |Manifest: NOSIGNATURE         More Villager Trades 1.0.0 - 1.20.1.jar           |More Villager Trades          |more_villager_trades          |1.0.0               |DONE      |Manifest: NOSIGNATURE         ironbows-1.20.1-FORGE-1.10.jar                    |Iron Bows (Forge)             |ironbows                      |1.20.1-FORGE-1.10   |DONE      |Manifest: NOSIGNATURE         industrial-foregoing-1.20.1-3.5.19.jar            |Industrial Foregoing          |industrialforegoing           |3.5.19              |DONE      |Manifest: NOSIGNATURE         FarmersDelight-1.20.1-1.2.5.jar                   |Farmer's Delight              |farmersdelight                |1.20.1-1.2.5        |DONE      |Manifest: NOSIGNATURE         iron_ender_chests-1.20-1.0.3.jar                  |Iron Ender Chests             |iron_ender_chests             |1.20-1.0.3          |DONE      |Manifest: NOSIGNATURE         ironfurnaces-1.20.1-4.1.6.jar                     |Iron Furnaces                 |ironfurnaces                  |4.1.6               |DONE      |Manifest: NOSIGNATURE         StructureCompass-1.20.1-2.1.0.jar                 |Structure Compass Mod         |structurecompass              |2.1.0               |DONE      |Manifest: NOSIGNATURE         lionfishapi-2.4-Fix.jar                           |LionfishAPI                   |lionfishapi                   |2.4-Fix             |DONE      |Manifest: NOSIGNATURE         MysticalAdaptations-1.20.1-1.0.1.jar              |Mystical Adaptations          |mysticaladaptations           |1.20.1-1.0.1        |DONE      |Manifest: NOSIGNATURE         AIOT 1.20.1 (v2.3) by 96maxxam69.jar              |maxxam AIOTs                  |maxxam_aiot                   |2.3                 |DONE      |Manifest: NOSIGNATURE         structure-expansion-2.0.1-build.11.jar            |Structure Expansion           |structureexpansion            |2.0.1-build.11      |DONE      |Manifest: NOSIGNATURE         Patchouli-1.20.1-84-FORGE.jar                     |Patchouli                     |patchouli                     |1.20.1-84-FORGE     |DONE      |Manifest: NOSIGNATURE         ironchests-5.0.2-forge.jar                        |Iron Chests: Restocked        |ironchests                    |5.0.2               |DONE      |Manifest: NOSIGNATURE         advancednetherite-forge-2.1.3-1.20.1.jar          |Advanced Netherite            |advancednetherite             |2.1.3               |DONE      |Manifest: NOSIGNATURE         mysticalagriculturedelight-1.0.2-1.20.1.jar       |Mystical Agriculture Delight  |mysticalagriculturedelight    |1.0.2-1.20.1        |DONE      |Manifest: NOSIGNATURE         gk_unbreakable-2.7.jar                            |Simple Unbreakable Tools      |gk_unbreakable                |2.7                 |DONE      |Manifest: NOSIGNATURE         ApothicAttributes-1.20.1-1.3.7.jar                |Apothic Attributes            |attributeslib                 |1.3.7               |DONE      |Manifest: NOSIGNATURE         MysticalCustomization-1.20.1-5.0.2.jar            |Mystical Customization        |mysticalcustomization         |5.0.2               |DONE      |Manifest: NOSIGNATURE         mifa-forge-1.20.x-1.1.1.jar                       |More Industrial Foregoing Addo|mifa                          |1.1.1               |DONE      |Manifest: NOSIGNATURE         resourcefullib-forge-1.20-2.0.6.jar               |Resourceful Lib               |resourcefullib                |2.0.6               |DONE      |Manifest: NOSIGNATURE         veinst-1.0.0.jar                                  |Veinst                        |veinst                        |1.0.0               |DONE      |Manifest: NOSIGNATURE         architectury-9.2.14-forge.jar                     |Architectury                  |architectury                  |9.2.14              |DONE      |Manifest: NOSIGNATURE         squatgrow-forge-5.3.0+mc1.20.1.jar                |Squat Grow                    |squatgrow                     |5.3.0+mc1.20.1      |DONE      |Manifest: NOSIGNATURE         xenotech-1.20.1-1.17.jar                          |XenoTech                      |xenotech                      |1.20.1-1.17         |DONE      |Manifest: NOSIGNATURE         monolib-forge-1.20.1-1.4.1.jar                    |MonoLib                       |monolib                       |1.4.1               |DONE      |Manifest: NOSIGNATURE         disenchanting_table-merged-1.20.1-3.1.0.jar       |Dis-Enchanting Table          |disenchanting_table           |3.1.0               |DONE      |Manifest: NOSIGNATURE         more_bows_and_arrows-merged-1.20.1-3.2.0.jar      |More Bows and Arrows          |more_bows_and_arrows          |3.2.0               |DONE      |Manifest: NOSIGNATURE         Haste Enchantment 1.0.0 - 1.20.1.jar              |Haste Enchantment             |hasteenchantment              |1.0.0               |DONE      |Manifest: NOSIGNATURE         Quad-1.2.9+1.20.4-Forge.jar                       |Quad                          |quad                          |1.2.9               |DONE      |Manifest: NOSIGNATURE         ironcoals-4.1.6.jar                               |Iron Coals                    |ironcoals                     |4.1.6               |DONE      |Manifest: NOSIGNATURE         framework-forge-1.20.1-0.7.12.jar                 |Framework                     |framework                     |0.7.12              |DONE      |Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         NekosEnchantedBooks-1.20.1-1.8.0.jar              |Neko's Enchanted Books        |nebs                          |1.8.0               |DONE      |Manifest: NOSIGNATURE         majrusz-library-forge-1.20.1-7.0.8.jar            |Majrusz Library               |majruszlibrary                |7.0.8               |DONE      |Manifest: NOSIGNATURE         ReworkedNetheriteV2.jar                           |Fixed netherite               |fixed_netherite               |1.0.0               |DONE      |Manifest: NOSIGNATURE         X-PlayerInfo-1.20.1-1.0.8.1-SNAPSHOT.jar          |X-PlayerInfo                  |x_player_info                 |1.20.1-1.0.8.1-SNAPS|DONE      |Manifest: NOSIGNATURE         Cucumber-1.20.1-7.0.13.jar                        |Cucumber Library              |cucumber                      |7.0.13              |DONE      |Manifest: NOSIGNATURE         JustEnoughGuns-0.8.0-1.20.1.jar                   |Just Enough Guns              |jeg                           |0.8.0               |DONE      |Manifest: NOSIGNATURE         ironladders-1.20.1-2.5.10-forge.jar               |Iron Ladders                  |ironladders                   |2.5.10              |DONE      |Manifest: NOSIGNATURE         AttributeFix-Forge-1.20.1-21.0.4.jar              |AttributeFix                  |attributefix                  |21.0.4              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         configlibtxf-4.2.5-forge.jar                      |ConfigLib TXF                 |configlibtxf                  |4.2.5-forge         |DONE      |Manifest: NOSIGNATURE         fortune_on_netherite_1.1.0_forge_1.20.1.jar       |Fortune on Netherite forge    |fortune_on_netherite_forge    |1.0.0               |DONE      |Manifest: NOSIGNATURE         caelus-forge-3.2.0+1.20.1.jar                     |Caelus API                    |caelus                        |3.2.0+1.20.1        |DONE      |Manifest: NOSIGNATURE         Enchantment-Reveal-1.20.1-Forge.jar               |Enchantment Reveal            |enchantment_reveal            |1.0.0               |DONE      |Manifest: NOSIGNATURE         BotanyPots-Forge-1.20.1-13.0.39.jar               |BotanyPots                    |botanypots                    |13.0.39             |DONE      |Manifest: NOSIGNATURE         starlight-1.1.2+forge.1cda73c.jar                 |Starlight                     |starlight                     |1.1.2+forge.1cda73c |DONE      |Manifest: NOSIGNATURE         Grand Enchantment Table 1.0.0 - 1.20.1.jar        |Grand Enchantment Table       |grand_enchantment_table       |1.0.0               |DONE      |Manifest: NOSIGNATURE         Iron Bushes 1.0.0 - 1.20.1.jar                    |Iron Bushes                   |iron_bushes                   |1.0.0               |DONE      |Manifest: NOSIGNATURE         Iron Fishing Rods 1.0.0 - 1.20.1.jar              |Iron Fishing Rods             |iron_fishing_rods             |1.0.0               |DONE      |Manifest: NOSIGNATURE         puzzlesaccessapi-forge-8.0.7.jar                  |Puzzles Access Api            |puzzlesaccessapi              |8.0.7               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         forge-1.20.1-47.3.0-universal.jar                 |Forge                         |forge                         |47.3.0              |DONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90         More Wandering Trades 1.0.0 - 1.20.1.jar          |More Wandering Trades         |more_wandering_trades         |1.0.0               |DONE      |Manifest: NOSIGNATURE         [1.20.1]MoreCraftingTables-5.1.3.jar              |More Crafting Tables Mod      |mctb                          |1.20.1              |DONE      |Manifest: NOSIGNATURE         M'TEG-1.1.0-1.20.1.jar                            |Mo' Than Enough Guns          |mteg                          |1.1.0               |DONE      |Manifest: NOSIGNATURE         MysticalAgriculture-1.20.1-7.0.14.jar             |Mystical Agriculture          |mysticalagriculture           |7.0.14              |DONE      |Manifest: NOSIGNATURE         MysticalAgradditions-1.20.1-7.0.6.jar             |Mystical Agradditions         |mysticalagradditions          |7.0.6               |DONE      |Manifest: NOSIGNATURE         matc-1.6.0.jar                                    |Mystical Agriculture Tiered Cr|matc                          |1.6.0               |DONE      |Manifest: NOSIGNATURE         client-1.20.1-20230612.114412-srg.jar             |Minecraft                     |minecraft                     |1.20.1              |DONE      |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f         mysticriftsmelt_ancient_debris-1.2.2-forge-1.20.1.|MysticRift:Smelt Ancient Debri|mysticriftsmelt_ancient_debris|1.2.2               |DONE      |Manifest: NOSIGNATURE         more_undrground_structures_1.20.1_8.1.jar         |more underground structures   |more_underground_structures   |7.1.0               |DONE      |Manifest: NOSIGNATURE         lucky-block-forge-1.20.1-13.0.jar                 |Lucky Block                   |lucky                         |1.20.1-13.0         |DONE      |Manifest: NOSIGNATURE         Aurora's-Arsenal-1.0.0-1.20.1.jar                 |Aurora's Arsenal              |aurorasarsenal                |1.0.0               |DONE      |Manifest: NOSIGNATURE         alexscaves-2.0.2.jar                              |Alex's Caves                  |alexscaves                    |2.0.2               |DONE      |Manifest: NOSIGNATURE         more_useful_copper-merged-1.20.1-1.2.0.jar        |More Useful Copper            |more_useful_copper            |1.2.0               |DONE      |Manifest: NOSIGNATURE         EnchantmentDescriptions-Forge-1.20.1-17.1.19.jar  |EnchantmentDescriptions       |enchdesc                      |17.1.19             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         CustomCursor-comm-1.2.0-forge.jar                 |customcursorcomm              |customcursorcomm              |1.0-SNAPSHOT        |DONE      |Manifest: NOSIGNATURE         titanium-1.20.1-3.8.32.jar                        |Titanium                      |titanium                      |3.8.32              |DONE      |Manifest: NOSIGNATURE         mysterious_mountain_lib-1.5.17-1.20.1.jar         |Mysterious Mountain Lib       |mysterious_mountain_lib       |1.5.17-1.20.1       |DONE      |Manifest: NOSIGNATURE         ironspawners-1.0.0.jar                            |Iron Spawners                 |ironspawners                  |1.0.0               |DONE      |Manifest: NOSIGNATURE         enchlevel-langpatch-2.2.8.jar                     |Enchantment Level Language Pat|enchlevellangpatch            |2.2.8               |DONE      |Manifest: NOSIGNATURE         vtaw_mw-forge-1.20.1-1.0.4.jar                    |Variant Tools and Weaponry - E|vtaw_mw                       |1.0.4               |DONE      |Manifest: NOSIGNATURE         reds-more-structures-1.0.8-common.jar             |Red’s More Structures         |mr_reds_morestructures        |1.0.8               |DONE      |Manifest: NOSIGNATURE         From-The-Fog-1.20-v1.9.2-Forge-Fabric.jar         |From The Fog                  |watching                      |1.9.2               |DONE      |Manifest: NOSIGNATURE         IronBarrels1.20.1-V1.0.jar                        |IronBarrelsUpdated            |ironbarrels                   |1.0.0               |DONE      |Manifest: NOSIGNATURE         MysticalExpansion-1.20.1-1.0.0.jar                |Mystical Expansion            |mysticalexpansion             |1.0.0               |DONE      |Manifest: NOSIGNATURE         EasyEmerald-Forge-1.20.1-1.5.8.jar                |Easy Emerald                  |easy_emerald                  |1.5.8               |DONE      |Manifest: NOSIGNATURE         more_beautiful_torches-merged-1.20.1-3.0.0.jar    |More Beautiful Torches!       |more_beautiful_torches        |3.0.0               |DONE      |Manifest: NOSIGNATURE         UniversalEnchants-v8.0.0-1.20.1-Forge.jar         |Universal Enchants            |universalenchants             |8.0.0               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         ImmediatelyFast-Forge-1.3.2+1.20.4.jar            |ImmediatelyFast               |immediatelyfast               |1.3.2+1.20.4        |DONE      |Manifest: NOSIGNATURE         moremobvariants-forge+1.20.1-1.3.0.1.jar          |More Mob Variants             |moremobvariants               |1.3.0.1             |DONE      |Manifest: NOSIGNATURE         ferritecore-6.0.1-forge.jar                       |Ferrite Core                  |ferritecore                   |6.0.1               |DONE      |Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a         Mvw-2.3.3c.jar                                    |MoreVanillaWeapons            |mvw                           |2.3.3c              |DONE      |Manifest: NOSIGNATURE         PuzzlesLib-v8.1.25-1.20.1-Forge.jar               |Puzzles Lib                   |puzzleslib                    |8.1.25              |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         Overpowered Creative Items.jar                    |Overpowered Creative Items    |overpowered_creative_items    |1.0.0               |DONE      |Manifest: NOSIGNATURE         overloadedarmorbar-1.20.1-1.jar                   |Overloaded Armor Bar          |overloadedarmorbar            |1.20.1-1            |DONE      |Manifest: NOSIGNATURE         OverflowingBars-v8.0.1-1.20.1-Forge.jar           |Overflowing Bars              |overflowingbars               |8.0.1               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a     Crash Report UUID: ccaf101c-823f-47b9-9c2f-7d3d0db92823     FML: 47.3     Forge: net.minecraftforge:47.3.0
    • You could try posting a log (if there is no log at all, it may be the launcher you are using, the FAQ may have info on how to enable the log) as described in the FAQ, however this will probably need to be reported to/remedied by the mod author.
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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