Jump to content

[1.6.4] Eclipse Error: "AL lib: (EE) alc_cleanup: 1 device not closed"


StarrTheEnderOwl

Recommended Posts

I am attempting to create a mod in Eclipse using Forge for 1.6.4, and I started getting that error, "AL lib: (EE) alc_cleanup: 1 device not closed," after I added the worldgen for my new ore.  Minecraft doesn't crash until I start to load a new world, though.

 

I know you all will need to see my coding for this to go anywhere, so do tell me which classes and/or error messages you wish to see, and I can provide those.  I will actually post my main class first hand, for the sake of giving some actual information in this initial post:

 

 

package starrtheenderowl.thismod.common;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.item.EnumToolMaterial;
import net.minecraft.item.Item;
import net.minecraftforge.common.EnumHelper;
import starrtheenderowl.thismod.block.BlockCantaloupe;
import starrtheenderowl.thismod.block.BlockStarOre;
import starrtheenderowl.thismod.item.ItemCantaloupeFruit;
import starrtheenderowl.thismod.item.ItemChocolateIcecream;
import starrtheenderowl.thismod.item.ItemStarAxe;
import starrtheenderowl.thismod.item.ItemStarHoe;
import starrtheenderowl.thismod.item.ItemStarPickaxe;
import starrtheenderowl.thismod.item.ItemStarShovel;
import starrtheenderowl.thismod.item.ItemStarSword;
import starrtheenderowl.thismod.item.ItemStars;
import starrtheenderowl.thismod.item.ItemStrawberryIcecream;
import starrtheenderowl.thismod.item.ItemVanillaIcecream;
import starrtheenderowl.thismod.weapon.ItemOzoneSword;
import starrtheenderowl.thismod.worldgen.StarOreWorldgen;
import cpw.mods.fml.common.IWorldGenerator;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.Init;
import cpw.mods.fml.common.SidedProxy;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.network.NetworkMod;
import cpw.mods.fml.common.registry.GameRegistry;
import cpw.mods.fml.common.registry.LanguageRegistry;

@Mod(modid = "thismod", name = "This Mod", version = "4.13")
@NetworkMod(clientSideRequired = true, serverSideRequired = false)

public class ThisMod {
private static final IWorldGenerator WorldgenStarOre = null;

@SidedProxy(clientSide = "starrtheenderowl.thismod.client.ClientProxy", serverSide = "starrtheenderowlthismod.common.CommonProxy")
public static CommonProxy proxy;

//Tool Materials
public static EnumToolMaterial toolStars = EnumHelper.addToolMaterial("STARS", 2, 700, 6.5F, 2.0F, 30);

//Weapon Materials
public static EnumToolMaterial toolOzoneSword = EnumHelper.addToolMaterial("OZONESWORD", 0, 131, 2.0F, 0.0F, 30);

//Blocks
public static Block Cantaloupe = new BlockCantaloupe(1500, Material.pumpkin).setUnlocalizedName("Cantaloupe");
public static Block StarOre = new BlockStarOre (1508, Material.rock).setUnlocalizedName("Star Ore");

//Items
public static Item CantaloupeFruit = new ItemCantaloupeFruit(1501).setUnlocalizedName("CantaloupeFruit");
public static Item Stars = new ItemStars(1509).setUnlocalizedName("Stars");
public static Item ChocolateIcecream = new ItemChocolateIcecream(1510).setUnlocalizedName("ChocolateIcecream");
public static Item StrawberryIcecream = new ItemStrawberryIcecream(1511).setUnlocalizedName("StrawberryIcecream");
public static Item VanillaIcecream = new ItemVanillaIcecream(1512).setUnlocalizedName("VanillaIcecream");

//Star Toolset
public static Item StarPickaxe = new ItemStarPickaxe(1502, toolStars).setUnlocalizedName("StarPickaxe");
public static Item StarShovel = new ItemStarShovel(1503, toolStars).setUnlocalizedName("StarShovel");
public static Item StarAxe = new ItemStarAxe(1504, toolStars).setUnlocalizedName("StarAxe");
public static Item StarHoe = new ItemStarHoe(1505, toolStars).setUnlocalizedName("StarHoe");
public static Item StarSword = new ItemStarSword(1506, toolStars).setUnlocalizedName("StarSword");

//Weapons
public static Item OzoneSword = new ItemOzoneSword(1507, toolOzoneSword).setUnlocalizedName("OzoneSword");

@Init
public void load(FMLInitializationEvent event) {
   proxy.registerRenderInformation();
}

public ThisMod()  {
   
   //Blocks
   GameRegistry.registerBlock(Cantaloupe);
   GameRegistry.registerBlock(StarOre);
   
   //Worldgen
   GameRegistry.registerWorldGenerator(WorldgenStarOre);
   
   //Blocks
   LanguageRegistry.addName(Cantaloupe, "Cantaloupe");
   
   //Items
   LanguageRegistry.addName(CantaloupeFruit, "Cantaloupe Fruit");
   LanguageRegistry.addName(Stars, "Stars");
   LanguageRegistry.addName(ChocolateIcecream, "Chocolate Icecream");
   LanguageRegistry.addName(StrawberryIcecream, "Strawberry Icecream");
   LanguageRegistry.addName(VanillaIcecream, "Vanilla Icecream");
   
   //WorldGen
   StarOreWorldgen WorldgenStarOre = new StarOreWorldgen();
   
   //Star Toolset Language Registries
   LanguageRegistry.addName(StarPickaxe, "Star Pickaxe");
   LanguageRegistry.addName(StarShovel, "Star Shovel");
   LanguageRegistry.addName(StarAxe, "Star Axe");
   LanguageRegistry.addName(StarHoe, "Star Hoe");
   LanguageRegistry.addName(StarSword, "Star Sword");
   
   //Weapons Language Registries
   LanguageRegistry.addName(OzoneSword, "Ozone Sword");
   
}
}

 

 

 

I haven't come up with an actual name yet, so for now, it is "This Mod."  Thanks in advance for any help I end up getting with this.

Link to comment
Share on other sites

I thought so.  I know other people have had that error.  Here's the error report that appeared as I tried to run Minecraft:

 

 

Mar 03, 2014 4:41:24 PM net.minecraft.launchwrapper.LogWrapper log
INFO: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
Mar 03, 2014 4:41:26 PM net.minecraft.launchwrapper.LogWrapper log
INFO: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
Mar 03, 2014 4:41:26 PM net.minecraft.launchwrapper.LogWrapper log
INFO: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
2014-03-03 16:41:28 [iNFO] [ForgeModLoader] Forge Mod Loader version 6.4.45.953 for Minecraft 1.6.4 loading
2014-03-03 16:41:28 [iNFO] [ForgeModLoader] Java is Java HotSpot(TM) Client VM, version 1.7.0_51, running on Windows 7:x86:6.1, installed at C:\Program Files\Java\jre7
2014-03-03 16:41:28 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
2014-03-03 16:41:28 [iNFO] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
2014-03-03 16:41:28 [iNFO] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
2014-03-03 16:41:28 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
2014-03-03 16:41:28 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
2014-03-03 16:41:28 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
2014-03-03 16:41:29 [iNFO] [sTDOUT] Loaded 40 rules from AccessTransformer config file fml_at.cfg
2014-03-03 16:41:29 [sEVERE] [ForgeModLoader] The binary patch set is missing. Either you are in a development environment, or things are not going to work!
2014-03-03 16:41:32 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
2014-03-03 16:41:32 [iNFO] [sTDOUT] Loaded 110 rules from AccessTransformer config file forge_at.cfg
2014-03-03 16:41:32 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
2014-03-03 16:41:32 [iNFO] [ForgeModLoader] Launching wrapped minecraft {net.minecraft.client.main.Main}
2014-03-03 16:41:36 [iNFO] [Minecraft-Client] Setting user: Player484
2014-03-03 16:41:39 [iNFO] [Minecraft-Client] LWJGL Version: 2.9.0
2014-03-03 16:41:42 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default
2014-03-03 16:41:45 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization
2014-03-03 16:41:45 [iNFO] [sTDOUT] MinecraftForge v9.11.1.953 Initialized
2014-03-03 16:41:45 [iNFO] [ForgeModLoader] MinecraftForge v9.11.1.953 Initialized
2014-03-03 16:41:45 [iNFO] [sTDOUT] Replaced 112 ore recipies
2014-03-03 16:41:45 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization
2014-03-03 16:41:45 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\Starr\Desktop\Minecraft Forge 1.6.4\forge\mcp\jars\config\logging.properties
2014-03-03 16:41:45 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL
2014-03-03 16:41:46 [iNFO] [ForgeModLoader] Searching C:\Users\Starr\Desktop\Minecraft Forge 1.6.4\forge\mcp\jars\mods for mods
2014-03-03 16:41:54 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load
2014-03-03 16:41:54 [iNFO] [mcp] Activating mod mcp
2014-03-03 16:41:54 [iNFO] [FML] Activating mod FML
2014-03-03 16:41:55 [iNFO] [Forge] Activating mod Forge
2014-03-03 16:41:55 [iNFO] [thismod] Activating mod thismod
2014-03-03 16:41:55 [WARNING] [Forge Mod Loader] Mod Forge Mod Loader is missing a pack.mcmeta file, things may not work well
2014-03-03 16:41:55 [WARNING] [Minecraft Forge] Mod Minecraft Forge is missing a pack.mcmeta file, things may not work well
2014-03-03 16:41:55 [WARNING] [This Mod] Mod This Mod is missing a pack.mcmeta file, things may not work well
2014-03-03 16:41:55 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:This Mod
2014-03-03 16:41:55 [iNFO] [ForgeModLoader] Registering Forge Packet Handler
2014-03-03 16:41:55 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler
2014-03-03 16:41:55 [WARNING] [ForgeModLoader] The mod FMLMod:thismod{4.13} is attempting to register a block whilst it it being constructed. This is bad modding practice - please use a proper mod lifecycle event.
2014-03-03 16:41:55 [WARNING] [ForgeModLoader] The mod FMLMod:thismod{4.13} is attempting to register a block whilst it it being constructed. This is bad modding practice - please use a proper mod lifecycle event.
2014-03-03 16:41:55 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0
2014-03-03 16:41:55 [sEVERE] [ForgeModLoader] Found anonymous item of class net.minecraft.item.ItemBlock with ID 1500 owned by mod thismod, this item will NOT survive a 1.7 upgrade!
2014-03-03 16:41:55 [sEVERE] [ForgeModLoader] Found anonymous item of class net.minecraft.item.ItemBlock with ID 1508 owned by mod thismod, this item will NOT survive a 1.7 upgrade!
2014-03-03 16:41:55 [sEVERE] [ForgeModLoader] Found anonymous item of class starrtheenderowl.thismod.item.ItemCantaloupeFruit with ID 1757 owned by mod thismod, this item will NOT survive a 1.7 upgrade!
2014-03-03 16:41:55 [sEVERE] [ForgeModLoader] Found anonymous item of class starrtheenderowl.thismod.item.ItemStarPickaxe with ID 1758 owned by mod thismod, this item will NOT survive a 1.7 upgrade!
2014-03-03 16:41:55 [sEVERE] [ForgeModLoader] Found anonymous item of class starrtheenderowl.thismod.item.ItemStarShovel with ID 1759 owned by mod thismod, this item will NOT survive a 1.7 upgrade!
2014-03-03 16:41:55 [sEVERE] [ForgeModLoader] Found anonymous item of class starrtheenderowl.thismod.item.ItemStarAxe with ID 1760 owned by mod thismod, this item will NOT survive a 1.7 upgrade!
2014-03-03 16:41:55 [sEVERE] [ForgeModLoader] Found anonymous item of class starrtheenderowl.thismod.item.ItemStarHoe with ID 1761 owned by mod thismod, this item will NOT survive a 1.7 upgrade!
2014-03-03 16:41:55 [sEVERE] [ForgeModLoader] Found anonymous item of class starrtheenderowl.thismod.item.ItemStarSword with ID 1762 owned by mod thismod, this item will NOT survive a 1.7 upgrade!
2014-03-03 16:41:55 [sEVERE] [ForgeModLoader] Found anonymous item of class starrtheenderowl.thismod.weapon.ItemOzoneSword with ID 1763 owned by mod thismod, this item will NOT survive a 1.7 upgrade!
2014-03-03 16:41:55 [sEVERE] [ForgeModLoader] Found anonymous item of class starrtheenderowl.thismod.item.ItemStars with ID 1765 owned by mod thismod, this item will NOT survive a 1.7 upgrade!
2014-03-03 16:41:55 [sEVERE] [ForgeModLoader] Found anonymous item of class starrtheenderowl.thismod.item.ItemChocolateIcecream with ID 1766 owned by mod thismod, this item will NOT survive a 1.7 upgrade!
2014-03-03 16:41:55 [sEVERE] [ForgeModLoader] Found anonymous item of class starrtheenderowl.thismod.item.ItemStrawberryIcecream with ID 1767 owned by mod thismod, this item will NOT survive a 1.7 upgrade!
2014-03-03 16:41:55 [sEVERE] [ForgeModLoader] Found anonymous item of class starrtheenderowl.thismod.item.ItemVanillaIcecream with ID 1768 owned by mod thismod, this item will NOT survive a 1.7 upgrade!
2014-03-03 16:41:58 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 4 mods
2014-03-03 16:41:58 [WARNING] [Forge Mod Loader] Mod Forge Mod Loader is missing a pack.mcmeta file, things may not work well
2014-03-03 16:41:58 [WARNING] [Minecraft Forge] Mod Minecraft Forge is missing a pack.mcmeta file, things may not work well
2014-03-03 16:41:58 [WARNING] [This Mod] Mod This Mod is missing a pack.mcmeta file, things may not work well
2014-03-03 16:41:58 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:This Mod
2014-03-03 16:42:00 [iNFO] [sTDOUT] 
2014-03-03 16:42:00 [iNFO] [sTDOUT] Starting up SoundSystem...
2014-03-03 16:42:00 [iNFO] [sTDOUT] Initializing LWJGL OpenAL
2014-03-03 16:42:00 [iNFO] [sTDOUT]     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
2014-03-03 16:42:03 [iNFO] [sTDOUT] OpenAL initialized.
2014-03-03 16:42:03 [iNFO] [sTDOUT] 
2014-03-03 16:42:03 [sEVERE] [Minecraft-Client] Realms: Server not available!
2014-03-03 16:42:14 [iNFO] [Minecraft-Server] Starting integrated minecraft server version 1.6.4
2014-03-03 16:42:14 [iNFO] [Minecraft-Server] Generating keypair
2014-03-03 16:42:15 [iNFO] [Minecraft-Server] Converting map!
2014-03-03 16:42:15 [iNFO] [Minecraft-Server] Scanning folders...
2014-03-03 16:42:15 [iNFO] [Minecraft-Server] Total conversion count is 0
2014-03-03 16:42:17 [iNFO] [ForgeModLoader] Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@18045ec)
2014-03-03 16:42:17 [iNFO] [ForgeModLoader] Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@18045ec)
2014-03-03 16:42:17 [iNFO] [ForgeModLoader] Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@18045ec)
2014-03-03 16:42:17 [iNFO] [Minecraft-Server] Preparing start region for level 0
2014-03-03 16:42:18 [iNFO] [sTDERR] java.lang.NullPointerException
2014-03-03 16:42:18 [iNFO] [sTDERR] 	at cpw.mods.fml.common.registry.GameRegistry.generateWorld(GameRegistry.java:103)
2014-03-03 16:42:18 [iNFO] [sTDERR] 	at net.minecraft.world.gen.ChunkProviderServer.populate(ChunkProviderServer.java:259)
2014-03-03 16:42:18 [iNFO] [sTDERR] 	at net.minecraft.world.chunk.Chunk.populateChunk(Chunk.java:1253)
2014-03-03 16:42:18 [iNFO] [sTDERR] 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:153)
2014-03-03 16:42:18 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:294)
2014-03-03 16:42:18 [iNFO] [sTDERR] 	at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:90)
2014-03-03 16:42:18 [iNFO] [sTDERR] 	at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:107)
2014-03-03 16:42:18 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:445)
2014-03-03 16:42:18 [iNFO] [sTDERR] 	at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
2014-03-03 16:42:18 [sEVERE] [Minecraft-Server] Encountered an unexpected exception NullPointerException
java.lang.NullPointerException
at cpw.mods.fml.common.registry.GameRegistry.generateWorld(GameRegistry.java:103)
at net.minecraft.world.gen.ChunkProviderServer.populate(ChunkProviderServer.java:259)
at net.minecraft.world.chunk.Chunk.populateChunk(Chunk.java:1253)
at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:153)
at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:294)
at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:90)
at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:107)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:445)
at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
2014-03-03 16:42:19 [sEVERE] [Minecraft-Server] This crash report has been saved to: C:\Users\Starr\Desktop\Minecraft Forge 1.6.4\forge\mcp\jars\.\crash-reports\crash-2014-03-03_16.42.19-server.txt
2014-03-03 16:42:19 [iNFO] [Minecraft-Server] Stopping server
2014-03-03 16:42:19 [iNFO] [Minecraft-Server] Saving players
2014-03-03 16:42:19 [iNFO] [Minecraft-Server] Saving worlds
2014-03-03 16:42:19 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld
2014-03-03 16:42:19 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether
2014-03-03 16:42:19 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End
2014-03-03 16:42:19 [iNFO] [ForgeModLoader] Unloading dimension 0
2014-03-03 16:42:19 [iNFO] [ForgeModLoader] Unloading dimension -1
2014-03-03 16:42:19 [iNFO] [ForgeModLoader] Unloading dimension 1
2014-03-03 16:42:19 [iNFO] [ForgeModLoader] The state engine was in incorrect state SERVER_STARTING and forced into state SERVER_STOPPED. Errors may have been discarded.
2014-03-03 16:42:20 [iNFO] [sTDOUT] ---- Minecraft Crash Report ----
2014-03-03 16:42:20 [iNFO] [sTDOUT] // Don't be sad. I'll do better next time, I promise!
2014-03-03 16:42:20 [iNFO] [sTDOUT] 
2014-03-03 16:42:20 [iNFO] [sTDOUT] Time: 3/3/14 4:42 PM
2014-03-03 16:42:20 [iNFO] [sTDOUT] Description: Exception in server tick loop
2014-03-03 16:42:20 [iNFO] [sTDOUT] 
2014-03-03 16:42:20 [iNFO] [sTDOUT] java.lang.NullPointerException
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	at cpw.mods.fml.common.registry.GameRegistry.generateWorld(GameRegistry.java:103)
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	at net.minecraft.world.gen.ChunkProviderServer.populate(ChunkProviderServer.java:259)
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	at net.minecraft.world.chunk.Chunk.populateChunk(Chunk.java:1253)
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:153)
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:294)
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:90)
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:107)
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:445)
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
2014-03-03 16:42:20 [iNFO] [sTDOUT] 
2014-03-03 16:42:20 [iNFO] [sTDOUT] 
2014-03-03 16:42:20 [iNFO] [sTDOUT] A detailed walkthrough of the error, its code path and all known details is as follows:
2014-03-03 16:42:20 [iNFO] [sTDOUT] ---------------------------------------------------------------------------------------
2014-03-03 16:42:20 [iNFO] [sTDOUT] 
2014-03-03 16:42:20 [iNFO] [sTDOUT] -- System Details --
2014-03-03 16:42:20 [iNFO] [sTDOUT] Details:
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	Minecraft Version: 1.6.4
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	Operating System: Windows 7 (x86) version 6.1
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	Java Version: 1.7.0_51, Oracle Corporation
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	Memory: 957846544 bytes (913 MB) / 1060372480 bytes (1011 MB) up to 1060372480 bytes (1011 MB)
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	Suspicious classes: FML and Forge are installed
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	IntCache: cache: 0, tcache: 0, allocated: 3, tallocated: 63
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	FML: MCP v8.11 FML v6.4.45.953 Minecraft Forge 9.11.1.953 4 mods loaded, 4 mods active
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	FML{6.4.45.953} [Forge Mod Loader] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	Forge{9.11.1.953} [Minecraft Forge] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	thismod{4.13} [This Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	Profiler Position: N/A (disabled)
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	Player Count: 0 / 8; []
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	Type: Integrated Server (map_client.txt)
2014-03-03 16:42:20 [iNFO] [sTDOUT] 	Is Modded: Definitely; Client brand changed to 'fml,forge'
2014-03-03 16:42:20 [iNFO] [sTDOUT] #@!@# Game crashed! Crash report saved to: #@!@# .\crash-reports\crash-2014-03-03_16.42.19-server.txt
2014-03-03 16:42:20 [iNFO] [Minecraft-Server] Stopping server
2014-03-03 16:42:20 [iNFO] [Minecraft-Server] Saving players
2014-03-03 16:42:20 [iNFO] [Minecraft-Server] Saving worlds
AL lib: (EE) alc_cleanup: 1 device not closed

 

 

I saw a lot of warnings and "severes," as well.  Are any of those important either?

Link to comment
Share on other sites

If I'm honest, I have no idea what that is yet (I'm still a Java noob).  But after deleting that line ending with "null," and editing the GameRegistry a bit (I don't remember what was wrong with it), I was able to load Minecraft successfully again (though I don't think my ore is actually generating naturally).  So thanks for putting that thought into my head, heheh.  Now I think the only other problems I have involve the names of some of my items and blocks.

Link to comment
Share on other sites

editing the GameRegistry a bit

You did what? No no no no no no no no no no no no no no no. NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO. lol, just don't edit base classes pls.

 

Okay I'll help you with your item and block names, including your ores (I'm 100% positive they won't generate) What's the problem?

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • https://pastebin.com/VwpAW6PX My game crashes upon launch when trying to implement the Oculus mod to this mod compilation, above is the crash report, I do not know where to begin to attempt to fix this issue and require assistance.
    • https://youtube.com/shorts/gqLTSMymgUg?si=5QOeSvA4TTs-bL46
    • CubeHaven is a SMP server with unique features that can't be found on the majority of other servers! Java: MC.CUBEHAVEN.NET Bedrock: MC.CUBEHAVEN.NET:19132 3 different stores: - CubeHaven Store: Our store to purchase using real money. - Bitcoin Store: Store for Bitcoin. Bitcoin can be earned from playing the server. Giving options for players if they want to spend real money or grind to obtain exclusive packages. - Black Market: A hidden store for trading that operates outside our traditional stores, like custom enchantments, exclusive items and more. Some of our features include: Rank Up: Progress through different ranks to unlock new privileges and perks. 📈 Skills: RPG-style skill system that enhances your gaming experience! 🎮 Leaderboards: Compete and shine! Top players are rewarded weekly! 🏆 Random Teleporter: Travel instantly across different worlds with a click! 🌐 Custom World Generation: Beautifully generated world. 🌍 Dungeons: Explore challenging and rewarding dungeons filled with treasures and monsters. 🏰 Kits: Unlock ranks and gain access to various kits. 🛠️ Fishing Tournament: Compete in a friendly fishing tournament! 🎣 Chat Games: Enjoy games right within the chat! 🎲 Minions: Get some help from your loyal minions. 👥 Piñata Party: Enjoy a festive party with Piñatas! 🎉 Quests: Over 1000 quests that you can complete! 📜 Bounty Hunter: Set a bounty on a player's head. 💰 Tags: Displayed on nametags, in the tab list, and in chat. 🏷️ Coinflip: Bet with other players on coin toss outcomes, victory, or defeat! 🟢 Invisible & Glowing Frames: Hide your frames for a cleaner look or apply a glow to it for a beautiful look. 🔲✨[ Player Warp: Set your own warp points for other players to teleport to. 🌟 Display Shop: Create your own shop and sell to other players! 🛒 Item Skins: Customize your items with unique skins. 🎨 Pets: Your cute loyal companion to follow you wherever you go! 🐾 Cosmetics: Enhance the look of your character with beautiful cosmetics! 💄 XP-Bottle: Store your exp safely in a bottle for later use! 🍶 Chest & Inventory Sorting: Keep your items neatly sorted in your inventory or chest! 📦 Glowing: Stand out from other players with a colorful glow! ✨ Player Particles: Over 100 unique particle effects to show off. 🎇 Portable Inventories: Over virtual inventories with ease. 🧳 And a lot more! Become part of our growing community today! Discord: https://cubehaven.net/discord Java: MC.CUBEHAVEN.NET Bedrock: MC.CUBEHAVEN.NET:19132
    • # Problematic frame: # C [libopenal.so+0x9fb4d] It is always the same issue - this refers to the Linux OS - so your system may prevent Java from working   I am not familiar with Linux - check for similar/related issues  
  • Topics

×
×
  • Create New...

Important Information

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