hey i have a modded client (obviously or i wouldn't be here) and i just got this crash report saying indexoutofboundsexception 0 -1 and i have no idea what that means. im playing on feed the beast and i installed 2 little mods made by koadmaster, they are the oatmeal mod and the chicken casarole mod. but i got a crash report could someone plz tell me what it means and how i can fix it? ive tried changing the item ID's for the 2 mods and that doesnt seem to help. here is my crash report
---- Minecraft Crash Report ----
// My bad.
Time: 12/15/12 6:53 AM
Description: Failed to start game
java.lang.IndexOutOfBoundsException: bitIndex < 0: -1
at java.util.BitSet.clear(Unknown Source)
at cpw.mods.fml.client.SpriteHelper.getFreeSlot(SpriteHelper.java:129)
at cpw.mods.fml.client.SpriteHelper.getUniqueSpriteIndex(SpriteHelper.java:105)
at cpw.mods.fml.client.registry.RenderingRegistry.addTextureOverride(RenderingRegistry.java:98)
at ModLoader.addOverride(ModLoader.java:203)
at xie.mods.xm.ClientProxy.addOverride(ClientProxy.java:29)
at xie.mods.xm.util.Xie.getItemSpriteOverride(Xie.java:819)
at xie.mods.xm.parser.JobItem.expandIconNode(JobItem.java:687)
at xie.mods.xm.parser.JobItem.doWork(JobItem.java:93)
at xie.mods.xm.Work.resolveJobList(Work.java:273)
at xie.mods.xm.Work.doWork(Work.java:253)
at xie.mods.xm.XiesMod.modsLoaded(XiesMod.java:118)
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 cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:440)
at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
at com.google.common.eventbus.EventBus.post(EventBus.java:268)
at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:140)
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 com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
at com.google.common.eventbus.EventBus.post(EventBus.java:268)
at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:83)
at cpw.mods.fml.common.Loader.initializeMods(Loader.java:654)
at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:196)
at net.minecraft.client.Minecraft.a(Minecraft.java:465)
at net.minecraft.client.Minecraft.run(Minecraft.java:752)
at java.lang.Thread.run(Unknown Source)
well, ModLoader has a funktion called addOverride.
It allows mods to override textures in terrain.png or items.png.
This funktion makes itt possible that mods use their own texture files.
But if there is no more free (or not-overridden) texture slot minecraft throws an indexOutOfBoundsException.
That actualy means that you have too much mods installed which want to add own textures.
If you remove a mod which adds own textures it will work again. (Maybe you will have to remove several mods).
ok but doesnt forge have infinite terrain and sprites api thing that allows it so that doesnt happen?
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
-
View User Profile
-
View Posts
-
Send Message
Curse Premium// My bad.
Time: 12/15/12 6:53 AM
Description: Failed to start game
java.lang.IndexOutOfBoundsException: bitIndex < 0: -1
at java.util.BitSet.clear(Unknown Source)
at cpw.mods.fml.client.SpriteHelper.getFreeSlot(SpriteHelper.java:129)
at cpw.mods.fml.client.SpriteHelper.getUniqueSpriteIndex(SpriteHelper.java:105)
at cpw.mods.fml.client.registry.RenderingRegistry.addTextureOverride(RenderingRegistry.java:98)
at ModLoader.addOverride(ModLoader.java:203)
at xie.mods.xm.ClientProxy.addOverride(ClientProxy.java:29)
at xie.mods.xm.util.Xie.getItemSpriteOverride(Xie.java:819)
at xie.mods.xm.parser.JobItem.expandIconNode(JobItem.java:687)
at xie.mods.xm.parser.JobItem.doWork(JobItem.java:93)
at xie.mods.xm.Work.resolveJobList(Work.java:273)
at xie.mods.xm.Work.doWork(Work.java:253)
at xie.mods.xm.XiesMod.modsLoaded(XiesMod.java:118)
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 cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:440)
at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
at com.google.common.eventbus.EventBus.post(EventBus.java:268)
at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:140)
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 com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
at com.google.common.eventbus.EventBus.post(EventBus.java:268)
at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:83)
at cpw.mods.fml.common.Loader.initializeMods(Loader.java:654)
at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:196)
at net.minecraft.client.Minecraft.a(Minecraft.java:465)
at net.minecraft.client.Minecraft.run(Minecraft.java:752)
at java.lang.Thread.run(Unknown Source)
Relevant Details:
- Minecraft Version: 1.4.2
- Operating System: Windows 7 (x86) version 6.1
- Java Version: 1.7.0_09, Oracle Corporation
- Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
- Memory: 145438152 bytes (138 MB) / 259588096 bytes (247 MB) up to 1037959168 bytes (989 MB)
- JVM Flags: 2 total; -Xms256M -Xmx1024M
- AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
- FML: MCP v7.19 FML v4.2.18.433 Minecraft Forge 6.0.1.355 Feed The Beast Mod Pack 49 mods loaded, 49 mods active
mcp [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
FML [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
Forge [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
mod_CodeChickenCore [CodeChicken Core] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
mod_NotEnoughItems [Not Enough Items] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
Backpack [Backpack] (backpack-1.5.4-1.4.2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
BlackDiamond [Black Diamond] (Black Diamond V1 - 1.4.2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
mod_ricefarm [mod_ricefarm] (ricefarm142ml2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
mod_Carpet [mod_Carpet] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
mod_emeraldplus [mod_emeraldplus] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
jammyfurniture [Jammy Furniture Mod] (1.4.2_Jammy_Furniture_Mod_V4.1_Beta_2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
IC2 [IndustrialCraft 2] (Industrialcraft-2_1.108.71-lf.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
AdvancedMachines [IC2 Advanced Machines Addon] (AdvancedMachines 4.4.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
AdvancedSolarPanel [Advanced Solar Panels] (AdvancedSolarPanels_3_2_0.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
BuildCraft|Core [BuildCraft] (BuildCraft-3.1.8.206.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
BuildCraft|Energy [BC Energy] (BuildCraft-3.1.8.206.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
BuildCraft|Transport [BC Transport] (BuildCraft-3.1.8.206.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
BuildCraft|Builders [BC Builders] (BuildCraft-3.1.8.206.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
BuildCraft|Factory [BC Factory] (BuildCraft-3.1.8.206.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
BuildCraft|Silicon [BC Silicon] (BuildCraft-3.1.8.206.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
mod_CCas [mod_CCas] (Chicken Cassarole for 1.4.2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
ComputerCraft [ComputerCraft] (ComputerCraft1.46.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
CCTurtle [ComputerCraft Turtles] (ComputerCraft1.46.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
MoCreatures [DrZhark's Mo'Creatures Mod] (DrZhark's Mo'Creatures Mod v4.1.3.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
EnderStorage [EnderStorage] (EnderStorage 1.2.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
ExtrabiomesXL [ExtrabiomesXL] (ExtrabiomesXL-3.3.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
factorization [Factorization] (Factorization-0.6.9_563.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
Forestry [Forestry for Minecraft] (Forestry-1.6.0.0pre6.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
ForgeIRC [ForgeIRC] (ForgeIRC-v1.0.11.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
GraviSuite [Gravitation Suite] (GraviSuite_1_4.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
IC2NuclearControl [Nuclear Control] (IC2NuclearControl-1.4.1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
mod_InvTweaks [Inventory Tweaks] (InvTweaks-1.44-1.4.2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
IronChest [Iron Chest] (Ironchest-4.2.1.120.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
ModularForceFieldSystem [Modular ForceField System V2] (ModularForceFieldSystemV2.2.8.0.5.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
Mystcraft [Mystcraft] (Mystcraft-1.4.1-0.9.3.02.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
mod_Oat [mod_Oat] (Oatmeal for 1.4.2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
ObsidianPP [Obsidian++] (ObsidianPP - 142.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
ObsidiPlates [Obsidian Pressure Plates] (Obsidiplates-1.0.0.1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
PortalGun [PortalGun] (portalgun1.4.2v0.3_universal.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
Railcraft [Railcraft] (Railcraft_6.7.0.0.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
mod_ReiMinimap [mod_ReiMinimap] (ReiMinimap_v3.2_05.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
StevesCarts [Steve's Carts] (StevesCarts2.0.0.a20.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
ThermalExpansion|Core [Thermal Expansion] (ThermalExpansion-2.0.5.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
ThermalExpansion|Factory [Factory] (ThermalExpansion-2.0.5.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
ThermalExpansion|Energy [Energy] (ThermalExpansion-2.0.5.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
TwilightForest [The Twilight Forest] (TwilightForest-1.12.2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
mod_UsefulStorage [mod_UsefulStorage] (Useful Storage (11-2) v.1.4.2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
Xie_RuntimeContentLoader [Xie's Mod] (Xie) Unloaded->Constructed->Pre-initialized->Initialized->Errored
GregTech_Addon [GregTech-Addon] (GregTechmod.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized
- LWJGL: 2.4.2
- OpenGL: Intel(R) HD Graphics Family GL version 3.1.0 - Build 8.15.10.2559, Intel
- Is Modded: Definitely; 'forge,fml'
- Type: Client
- Texture Pack: Default
- Profiler Position: N/A (disabled)
- Vec3 Pool Size: ~ERROR~ NullPointerException: null
-
View User Profile
-
View Posts
-
Send Message
Curse Premiumok but doesnt forge have infinite terrain and sprites api thing that allows it so that doesnt happen?