Jump to content

Recommended Posts

Posted

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.

Posted

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?

Posted

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.

Posted

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?

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Para contactar con Delta en Chile, marque el número gratuito +56 || 800 \\ 914// 891 desde cualquier teléfono local. No se requiere el código de país para llamadas dentro de Chile. Esta línea ofrece atención al cliente en español las 24 horas, los 7 días de la semana, para reservas, cambios de vuelo, consultas sobre equipaje y más. Si llama desde el extranjero, utilice el +56 800 914 891, aunque algunas aerolíneas internacionales podrían no ofrecer números 800. También puede comunicarse con el servicio de atención al cliente internacional en español de Delta al  +1-855-534-2012. Antes de llamar, asegúrese de tener a mano su referencia de reserva, documento de identidad personal y número de SkyMiles (si corresponde) para agilizar la asistencia. Delta ofrece un servicio al cliente confiable y multilingüe en todo el mundo.  
    • We are your trusted partner in discovering the best coupon codes and offers from top e-commerce platforms across Western countries, including Bulgaria, Canada, and Europe. Our mission is simple: to help you save big while shopping for your favorite products. In this article, we’ll explore Temu Coupon Bundle [acw472253] showcasing unbeatable savings opportunities tailored just for you. Whether you're a savvy shopper looking for exclusive deals or a first-time buyer seeking maximum discounts, we have you covered. Together, we’ll make every shopping spree a budget-friendly adventure! Use the exclusive Bundle acw472253  to access maximum benefits in Canada, Canada, and European nations. Whether you're shopping for yourself or gifting others, this Bundle guarantees unparalleled savings. Make the most of the Temu coupon $100  off and Temu $100   off coupon Bundle today. It's time to enjoy exceptional deals and turn your shopping spree into a budget-friendly experience. What Is The Coupon Bundle For Temu $100    Off? Both new and existing customers can reap incredible benefits with our coupon $100   off on the Temu app and website. Use the $100   off Temu coupon and enjoy unparalleled savings. ·         acw472253: Flat $100   off your total purchase. ·         acw472253: Access a $100   coupon pack for multiple uses. ·         acw472253: Enjoy $100   off as a new customer. ·         acw472253: Extra $100   promo Bundle benefits for existing customers. ·         acw472253: Exclusive $100   coupon for users in the Canada/Canada. Temu Coupon Bundle $100  Off For New Users In 2025 New users can get unmatched savings with the Temu coupon $100  off and Temu coupon Bundle $100  off. Use our exclusive Bundle to unlock these amazing benefits: ·         acw472253: Flat $100  discount for first-time shoppers. ·         acw472253: A $100  coupon bundle for new customers. ·         acw472253: Up to $100  off for multiple uses. ·         acw472253: Free shipping to 68 countries worldwide. ·         acw472253: An additional  $100  off on your first purchase. ·         acw472253: Also Flat  $100  off on selected items. How To Redeem The Temu Coupon $100  Off For New Customers? Follow these steps to use the Temu $100  coupon and Temu  $100  off coupon Bundle for new users: 1.    Visit the Temu website or download the app. 2.    Add items to your cart and proceed to checkout. 3.    Enter the coupon Bundle acw472253  in the promo field. 4.    Click Apply to see the discount. 5.    Complete the payment and enjoy your savings. Temu Coupon $100  Off For Existing Customers Existing users can also benefit from our Temu $100  coupon codes for existing users and Temu coupon $100  off for existing customers free shipping. Use acw472253  to unlock these perks: ·         acw472253: Extra $100  discount for loyal Temu users. ·         acw472253: A $100  coupon bundle for multiple purchases. ·         acw472253: Free gift with express shipping across the Canada/Canada. ·         acw472253: Additional  $100  off on top of existing discounts. ·         acw472253: Free shipping to 68 countries. ·         acw472253: Flat  $100  off on select purchases. How To Use The Temu Coupon Bundle $100  Off For Existing Customers? Follow these steps to use the Temu coupon Bundle $100  off and Temu coupon $100  off code: 1.    Log in to your Temu account. 2.    Select items and add them to your cart. 3.    Enter the coupon Bundle acw472253  at checkout. 4.    Apply the Bundle and confirm the discount. 5.    Proceed with payment and enjoy exclusive offers. Latest Temu Coupon $100  Off First Order First-time shoppers can enjoy maximum benefits with the Temu coupon Bundle $100  off first order, Temu coupon Bundle first order, and Temu coupon Bundle $100  off first time user. Use the acw472253  Bundle to unlock these offers: ·         acw472253: Flat $100  off on your first order. ·         acw472253: A $100  Temu coupon pack for first-time buyers. ·         acw472253: Up to $100  off for multiple uses. ·         acw472253: Free shipping to 68 countries. ·         acw472253: Additional  $100  discount for first-time purchases. ·         acw472253: Flat  $100  off on selected items. How To Find The Temu Coupon Bundle $100  Off? Discover verified Temu coupon $100  off and Temu coupon $100  off Reddit deals by subscribing to the Temu newsletter. Check Temu’s social media pages for the latest promos or visit trusted coupon websites for regularly updated offers. Is Temu $100  Off Coupon Legit? Yes, the Temu $100  Off Coupon Legit and Temu $100  off coupon legit. Our Bundle acw472253  is tested, verified, and works globally. Use it confidently for discounts on both first and recurring orders. How Does Temu $100  Off Coupon Work? The Temu coupon Bundle $100  off first-time user and Temu coupon codes $100  off offer instant savings. Enter the Bundle at checkout to reduce your bill by $100  or more, ensuring great value on every purchase. How To Earn Temu $100  Coupons As A New Customer? Unlock the Temu coupon Bundle $100  off and $100  off Temu coupon Bundle by signing up for Temu’s rewards program. Earn additional discounts through referrals and promotional activities. What Are The Advantages Of Using The Temu Coupon $100  Off? ·         Save $100  on your first order. ·         Access a $100  bundle for multiple uses. ·         Flat  $100  off for selected items. ·         Up to 70% off on trending items. ·         Additional $100   off for existing customers. ·         Up to 90% off on selected items. ·         Free gift for new users. ·         Free shipping to 68 countries. Temu $100  Discount Bundle And Free Gift For New And Existing Customers Take advantage of the Temu $100  off coupon Bundle and $100  off Temu coupon code. Use acw472253  to unlock: ·         acw472253: $100  off on the first order. ·         acw472253: Extra $100   discount on any item. ·         acw472253: Flat  $100  off on select purchases. ·         acw472253: Free gift for new users. ·         acw472253: Up to 70% off on select items. ·         acw472253: Free shipping to 68 countries. Pros And Cons Of Using The Temu Coupon Bundle $100  Off This Month Pros: ·         Flat $100  discount for new and existing users. ·         Additional $100   off on top of discounts. ·         Flat  $100  off for specific items. ·         Free shipping to 68 countries. ·         No minimum purchase required. ·         Valid globally. Cons: ·         Limited to specific regions for maximum benefits. ·         Some items may be excluded from the offer. Terms And Conditions Of Using The Temu Coupon $100  Off In 2025 ·         Temu coupon Bundle $100  off free shipping: No minimum purchase required. ·         Latest Temu coupon Bundle $100  off: Valid worldwide. ·         Use acw472253  anytime, as it has no expiration date. ·         Applicable to both new and existing customers. ·         Free shipping to 68 countries. Use The Latest Temu Coupon Bundle $100  Off Don’t miss out on incredible savings with the Temu coupon Bundle $100  off. Shop smart and make every dollar count. With the Temu coupon $100  off, you’re guaranteed a rewarding shopping experience. Start saving today! We are your trusted partner in discovering the best coupon codes and offers from top e-commerce platforms across Western countries, including the Canada, Canada, and Europe. Our mission is simple: to help you save big while shopping for your favorite products. In this article, we’ll explore Temu Coupon Bundle [acw472253] showcasing unbeatable savings opportunities tailored just for you. Whether you're a savvy shopper looking for exclusive deals or a first-time buyer seeking maximum discounts, we have you covered. Together, we’ll make every shopping spree a budget-friendly adventure! Use the exclusive Bundle acw472253  to access maximum benefits in the Canada, Canada, and European nations. Whether you're shopping for yourself or gifting others, this Bundle guarantees unparalleled savings. Make the most of the Temu coupon  $100  off and Temu  $100  off coupon Bundle today. It's time to enjoy exceptional deals and turn your shopping spree into a budget-friendly experience. What Is The Coupon Bundle For Temu  $100  Off? Both new and existing customers can reap incredible benefits with our Temu coupon  $100  off on the Temu app and website. Use the  $100  off Temu coupon and enjoy unparalleled savings. acw472253: Flat  $100  off your total purchase. acw472253: Access a  $100  coupon pack for multiple uses. acw472253: Enjoy  $100  off as a new customer. acw472253: Extra  $100  promo Bundle benefits for existing customers. acw472253: Exclusive  $100  coupon for users in the Canada/Canada. Temu Coupon Bundle  $100  Off For New Users In 2025 New users can get unmatched savings with the Temu coupon  $100  off and Temu coupon Bundle  $100  off. Use our exclusive Bundle to unlock these amazing benefits: acw472253: Flat  $100  discount for first-time shoppers. acw472253: A  $100  coupon bundle for new customers. acw472253: Up to  $100  off for multiple uses. acw472253: Free shipping to 68 countries worldwide. acw472253: An additional  $100  off on your first purchase. acw472253: Also Flat  $100  off on selected items. How To Redeem The Temu Coupon  $100  Off For New Customers? Follow these steps to use the Temu  $100  coupon and Temu  $100  off coupon Bundle for new users: Visit the Temu website or download the app. Add items to your cart and proceed to checkout. Enter the coupon Bundle acw472253  in the promo field. Click Apply to see the discount. Complete the payment and enjoy your savings. Temu Coupon  $100  Off For Existing Customers Existing users can also benefit from our Temu  $100  coupon codes for existing users and Temu coupon  $100  off for existing customers free shipping. Use acw472253  to unlock these perks: acw472253: Extra  $100  discount for loyal Temu users. acw472253: A  $100  coupon bundle for multiple purchases. acw472253: Free gift with express shipping across the Canada/Canada. acw472253: Additional  $100  off on top of existing discounts. acw472253: Free shipping to 68 countries. acw472253: Flat  $100  off on select purchases. How To Use The Temu Coupon Bundle  $100  Off For Existing Customers? Follow these steps to use the Temu coupon Bundle  $100  off and Temu coupon  $100  off code: Log in to your Temu account. Select items and add them to your cart. Enter the coupon Bundle acw472253  at checkout. Apply the Bundle and confirm the discount. Proceed with payment and enjoy exclusive offers. Latest Temu Coupon  $100  Off First Order First-time shoppers can enjoy maximum benefits with the Temu coupon Bundle  $100  off first order, Temu coupon Bundle first order, and Temu coupon Bundle  $100  off first time user. Use the acw472253  Bundle to unlock these offers: acw472253: Flat  $100  off on your first order. acw472253: A  $100  Temu coupon pack for first-time buyers. acw472253: Up to  $100  off for multiple uses. acw472253: Free shipping to 68 countries. acw472253: Additional  $100  discount for first-time purchases. acw472253: Flat  $100  off on selected items. How To Find The Temu Coupon Bundle  $100  Off? Discover verified Temu coupon  $100  off and Temu coupon  $100  off Reddit deals by subscribing to the Temu newsletter. Check Temu’s social media pages for the latest promos or visit trusted coupon websites for regularly updated offers. Is Temu  $100  Off Coupon Legit? Yes, the Temu  $100  Off Coupon Legit and Temu  $100  off coupon legit. Our Bundle acw472253  is tested, verified, and works globally. Use it confidently for discounts on both first and recurring orders. How Does Temu  $100  Off Coupon Work? The Temu coupon Bundle  $100  off first-time user and Temu coupon codes  $100  off offer instant savings. Enter the Bundle at checkout to reduce your bill by  $100  or more, ensuring great value on every purchase. How To Earn Temu  $100  Coupons As A New Customer? Unlock the Temu coupon Bundle  $100  off and  $100  off Temu coupon Bundle by signing up for Temu’s rewards program. Earn additional discounts through referrals and promotional activities. What Are The Advantages Of Using The Temu Coupon  $100  Off? Save  $100  on your first order. Access a  $100  bundle for multiple uses. Flat  $100  off for selected items. Up to 70% off on trending items. Additional $100   off for existing customers. Up to  $100  off on selected items. Free gift for new users. Free shipping to 68 countries. Temu  $100  Discount Bundle And Free Gift For New And Existing Customers Take advantage of the Temu  $100  off coupon Bundle and  $100  off Temu coupon code. Use acw472253  to unlock: acw472253:  $100  off on the first order. acw472253: Extra $100   discount on any item. acw472253: Flat  $100  off on select purchases. acw472253: Free gift for new users. acw472253: Up to 70% off on select items. acw472253: Free shipping to 68 countries. Pros And Cons Of Using The Temu Coupon Bundle  $100  Off This Month Pros: Flat  $100  discount for new and existing users. Additional $100   off on top of discounts. Flat  $100  off for specific items. Free shipping to 68 countries. No minimum purchase required. Valid globally. Cons: Limited to specific regions for maximum benefits. Some items may be excluded from the offer. Terms And Conditions Of Using The Temu Coupon  $100  Off In 2025 Temu coupon Bundle  $100  off free shipping: No minimum purchase required. Latest Temu coupon Bundle  $100  off: Valid worldwide. Use acw472253  anytime, as it has no expiration date. Applicable to both new and existing customers. Free shipping to 68 countries. Use The Latest Temu Coupon Bundle  $100  Off Don’t miss out on incredible savings with the Temu coupon Bundle  $100  off. Shop smart and make every dollar count. With the Temu coupon  $100  off, you’re guaranteed a rewarding shopping experience. Start saving today! Experience shopping like never before with Temu—a platform known for its extensive collection of trending items, unbeatable prices, and customer-centric features. With acw472253and acw472253, you can enjoy incredible discounts, including a flat $100   off for first-time users. Dive into the world of exciting offers and make the most of Temu’s exclusive deals tailored for 2025. From free shipping in 67 countries to discounts of up to 90%, Temu is your go-to platform for affordable shopping. Exclusive Benefits of Temu Coupon Codes Here are some of the top Temu coupon codes and their amazing benefits:   acw472253: Temu coupon Bundle $100   off for new users. acw472253: Temu coupon Bundle $100   off for existing users. acw472253: Temu coupon Bundle  $100  extra off on selected items. acw472253: Free gift for new users with this Temu coupon. acw472253: Temu $100   coupon bundle for both new and existing users. These offers ensure that every shopper—whether a first-time user or a loyal customer—gets the most out of their Temu experience. What Makes Temu Stand Out? Temu isn’t just a shopping platform; it’s a global phenomenon that combines affordability with quality. Whether you’re in the United States, Canada, the United Kingdom, Japan, or Brazil, Temu offers something special for everyone. Some key features include:   Vast Collection: Explore a diverse range of items, from fashion to home decor, electronics, and more. Unbeatable Prices: Enjoy savings of up to 90% on countless items. Fast Delivery: Get your orders delivered quickly, no matter where you are. Free Shipping: Available in 67 countries. Daily Deals: New offers and discounts launched regularly. With Temu, you can redefine how you shop and save.   Explore Temu Coupon Codes by Region Temu caters to shoppers across North America, South America, and Europe with exclusive offers tailored to each region. Check out these exciting codes and their benefits:   acw472253: Temu coupon Bundle $100   off for Canada shoppers. acw472253: Temu coupon Bundle $100   off for Canada users. acw472253: Temu coupon Bundle $100   off for Canada. acw472253: Temu coupon Bundle $100   off for Japan. acw472253: Temu coupon Bundle  $100  off for Mexico. acw472253: Temu coupon Bundle  $100  for Brazil. These region-specific offers ensure that every shopper enjoys seamless discounts no matter where they are.   Why Use Temu Coupon Codes in 2025? Using Temu coupon codes like acw472253and acw472253isn’t just about saving money; it’s about enhancing your shopping experience. Here’s what you can look forward to:   Flat $100   Discount: Perfect for new and existing users. Extra  $100  Off: Stack this discount with other deals for maximum savings. £100Coupon Bundle: Combine multiple coupons for even greater discounts. Free Gifts: Enjoy special rewards as a first-time shopper. Enhanced Savings: Up to 50% extra discount on selected items. With these perks, it’s no wonder Temu is one of the fastest-growing e-commerce platforms in the world.   How to Use Temu Promo Codes Redeeming your Temu coupon codes is a breeze. Follow these simple steps to unlock incredible savings:   Sign Up: Create an account on the Temu platform. Choose Your Items: Add your favorite items to the cart. Apply Coupon Code: Enter codes like acw472253at checkout. Enjoy Discounts: Watch your total drop instantly! Whether you’re a first-time user or a returning shopper, these codes ensure you get the best deal every time.   Temu’s New Offers in 2025 Temu is always innovating to bring its users exciting new deals. This year, you can look forward to:   Temu First-Time User Coupon: A generous $100   discount for new users. Temu New User Coupon: Exclusive deals for first-time shoppers. Temu Discount Bundle for 2025: Updated promo codes to maximize your savings. Temu Promo Bundle for 2025: Special seasonal offers. Temu Coupon Bundle: Combine deals for unmatched savings. Temu Coupons for Existing Users: Rewarding loyal customers with incredible discounts. These offers are just the beginning of what Temu has in store for its shoppers in 2025.   Conclusion: Why Wait? Start Saving with Temu Today! Shopping on Temu is more than just buying products; it’s about experiencing value, quality, and satisfaction. With acw472253  and acw472253, you can unlock savings that make every purchase worthwhile. From $100   off for first-time users to incredible deals for existing customers, Temu coupon codes are your ticket to smart shopping in 2025.   So, what are you waiting for? Start exploring Temu’s vast collection, apply your favorite coupon codes, and enjoy a shopping spree like never before.     
    • Delete the forge-client.toml file in your config folder and test it again
    • Server and client mods are not matching - looks like the server is starting without any mods (vanilla server)   Check or add the server log
    • Add the full crash-report or log
  • 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.