Posted February 18, 201510 yr I'm having a bit of touble. I want to draw out the type Block from class Itemstack, but the only method that Itemstack Provides is getItem. Here is my code. The error I'm trying to resolve is on the If Statement: CraftingManager craftMgr = CraftingManager.getInstance(); List<IRecipe> recipes = CraftingManager.getInstance().getRecipeList(); Iterator<IRecipe> recipesIt = recipes.iterator(); while(recipesIt.hasNext()){ IRecipe rec = recipesIt.next(); ItemStack result = rec.getRecipeOutput(); if(result != null && result.getItem() ==BuildCraftFactory.quarryBlock){ recipesIt.remove(); } } Also, I should have you know that you are reading my signature.
February 18, 201510 yr Block#getBlockFromItem(Item itemIn) ItemStack.getItem() Put them together. 1.7.10 is no longer supported by forge, you are on your own.
February 18, 201510 yr Author is there any reason that the quarry recipie isn;t getting removed? should I do that in the pre-Init? Also, I should have you know that you are reading my signature.
February 19, 201510 yr is there any reason that the quarry recipie isn;t getting removed? should I do that in the pre-Init? Use List CraftingManager.getInstance().getRecipeList.remove(CraftingManager.getInstance().getRecipeList.size() - 1);
February 19, 201510 yr Author my new code: CraftingManager craftMgr = CraftingManager.getInstance(); List<IRecipe> recipes = CraftingManager.getInstance().getRecipeList(); Iterator<IRecipe> recipesIt = recipes.iterator(); int i = -1;//new while(recipesIt.hasNext()){ i++;//new IRecipe rec = recipesIt.next(); ItemStack result = rec.getRecipeOutput(); if(result != null && Block.getBlockFromItem(result.getItem()) ==BuildCraftFactory.quarryBlock){ System.out.println("found quarry"); CraftingManager.getInstance().getRecipeList().remove(i);//new } } still doesn't remove the quarry. Also, I should have you know that you are reading my signature.
February 19, 201510 yr Thats really strange.. It should work. So your print statement does not do anything? I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP) II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.
February 19, 201510 yr Author my print statement does not print, no matter which Init I put it into. Also, I should have you know that you are reading my signature.
February 19, 201510 yr my print statement does not print, no matter which Init I put it into. Why are you removing the recipe like that? Just remove it immediately after you make the original recipe.
February 19, 201510 yr Author because it's not my mod. i'm trying to remove recipes from other mods. Also, I should have you know that you are reading my signature.
February 19, 201510 yr Your mod may be getting loaded after BuildCraft...try adding dependencies = "after:*" To your @Mod declaration. Replace the * with BuildCraft's mod id. Maker of the Craft++ mod.
February 20, 201510 yr Author Your mod may be getting loaded after BuildCraft...try adding dependencies = "after:*" To your @Mod declaration. Replace the * with BuildCraft's mod id. forge refuses to load my mod when fill that in. edit: fiddled with it it now loads, looks for quarry, and doesn't find it. Also, I should have you know that you are reading my signature.
February 20, 201510 yr Author log: changed code to following. forge finds the quarry, and throws a stacktrace as follows: CODE: List<IRecipe> recipes = CraftingManager.getInstance().getRecipeList(); Iterator<IRecipe> recipesIt = recipes.iterator(); int i = -1; System.out.println("finding quarry"); while(recipesIt.hasNext()){ i++; IRecipe rec = recipesIt.next(); ItemStack result = rec.getRecipeOutput(); if(result != null && Block.getBlockFromItem(result.getItem()).getItemIconName() ==BuildCraftFactory.quarryBlock.getItemIconName()){ System.out.println("found quarry"); CraftingManager.getInstance().getRecipeList().remove(i); } } StackTrace: [20:10:22] [Client thread/INFO] [sTDOUT]: [com.tuskiomi.styx.StyxMain:postInit:30]: finding quarry [20:10:22] [Client thread/INFO] [sTDOUT]: [com.tuskiomi.styx.StyxMain:postInit:36]: found quarry [20:10:22] [Client thread/ERROR] [FML]: Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue [20:10:22] [Client thread/ERROR] [FML]: mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized FML{7.10.85.1291} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1291.jar) Unloaded->Constructed->Pre-initialized->Initialized Forge{10.13.2.1291} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1291.jar) Unloaded->Constructed->Pre-initialized->Initialized examplemod{1.0} [Example Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized Styx{0.0} [styx] (bin) Unloaded->Constructed->Pre-initialized->Errored BuildCraft|Core{6.3.6} [buildCraft] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Transport{6.3.6} [bC Transport] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Silicon{6.3.6} [bC Silicon] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Builders{6.3.6} [bC Builders] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Energy{6.3.6} [bC Energy] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Factory{6.3.6} [bC Factory] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized [20:10:22] [Client thread/ERROR] [FML]: The following problems were captured during this phase [20:10:22] [Client thread/ERROR] [FML]: Caught exception from Styx java.util.ConcurrentModificationException at java.util.ArrayList$Itr.checkForComodification(Unknown Source) ~[?:1.8.0_31] at java.util.ArrayList$Itr.next(Unknown Source) ~[?:1.8.0_31] at com.tuskiomi.styx.StyxMain.postInit(StyxMain.java:33) ~[bin/:?] [b] Line 33: "IRecipe rec = recipesIt.next();"[/b] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_31] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_31] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513) ~[forgeSrc-1.7.10-10.13.2.1291.jar:?] at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source) ~[?:?] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_31] at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?] at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) ~[forgeSrc-1.7.10-10.13.2.1291.jar:?] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187) ~[forgeSrc-1.7.10-10.13.2.1291.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_31] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_31] at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?] at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118) [LoadController.class:?] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691) [Loader.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:288) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_31] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_31] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:85) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [20:10:22] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ---- // I just don't know what went wrong Time: 2/19/15 8:10 PM Description: Initializing game java.util.ConcurrentModificationException at java.util.ArrayList$Itr.checkForComodification(Unknown Source) at java.util.ArrayList$Itr.next(Unknown Source) at com.tuskiomi.styx.StyxMain.postInit(StyxMain.java:33) [b]line 33: "IRecipe rec = recipesIt.next();" [/b] 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:513) 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.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187) 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.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118) at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691) at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:288) at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) at net.minecraft.client.Minecraft.run(Minecraft.java:931) at net.minecraft.client.main.Main.main(Main.java:164) 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:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:85) at GradleStart.main(GradleStart.java:45) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at java.util.ArrayList$Itr.checkForComodification(Unknown Source) at java.util.ArrayList$Itr.next(Unknown Source) at com.tuskiomi.styx.StyxMain.postInit(StyxMain.java:33) [b]line 33: "IRecipe rec = recipesIt.next();" [/b] 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:513) 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.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187) 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.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118) at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691) at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:288) at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) -- Initialization -- Details: Stacktrace: at net.minecraft.client.Minecraft.run(Minecraft.java:931) at net.minecraft.client.main.Main.main(Main.java:164) 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:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:85) at GradleStart.main(GradleStart.java:45) -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 7 (x86) version 6.1 Java Version: 1.8.0_31, Oracle Corporation Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation Memory: 728875768 bytes (695 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v9.05 FML v7.10.85.1291 Minecraft Forge 10.13.2.1291 11 mods loaded, 11 mods active mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized FML{7.10.85.1291} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1291.jar) Unloaded->Constructed->Pre-initialized->Initialized Forge{10.13.2.1291} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1291.jar) Unloaded->Constructed->Pre-initialized->Initialized examplemod{1.0} [Example Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized Styx{0.0} [styx] (bin) Unloaded->Constructed->Pre-initialized->Errored BuildCraft|Core{6.3.6} [buildCraft] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Transport{6.3.6} [bC Transport] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Silicon{6.3.6} [bC Silicon] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Builders{6.3.6} [bC Builders] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Energy{6.3.6} [bC Energy] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Factory{6.3.6} [bC Factory] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized Launched Version: 1.7.10 LWJGL: 2.9.1 OpenGL: AMD Radeon R9 200 Series GL version 4.4.13283 Compatibility Profile Context 14.501.1003.0, ATI Technologies Inc. GL Caps: Using GL 1.3 multitexturing. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Anisotropic filtering is supported and maximum anisotropy is 16. Shaders are available because OpenGL 2.1 is supported. Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Resource Packs: [] Current Language: English (US) Profiler Position: N/A (disabled) Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used Anisotropic Filtering: Off (1) [20:10:22] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Brice\workspace\.\crash-reports\crash-2015-02-19_20.10.22-client.txt AL lib: (EE) alc_cleanup: 1 device not closed Java HotSpot(TM) Client VM warning: Using incremental CMS is deprecated and will likely be removed in a future release you'll notice line 33 of my mod is of special notice in this trace here is line 33: line 33: "IRecipe rec = recipesIt.next();" Also, I should have you know that you are reading my signature.
February 20, 201510 yr You can't remove elements in a list whilst iterating through it like that. There's a reason the iterator has the remove() method. http://stackoverflow.com/a/223929 Don't ask for support per PM! They'll get ignored! | If a post helped you, click the "Thank You" button at the top right corner of said post! | mah twitter This thread makes me sad because people just post copy-paste-ready code when it's obvious that the OP has little to no programming experience. This is not how learning works.
February 20, 201510 yr Author so I need a break statement, right? Also, I should have you know that you are reading my signature.
February 20, 201510 yr No, there is the more better way. Just recipesIt.remove(); How simple. I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP) II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.
February 20, 201510 yr Author won't that remove it from the iterator object, and not forge? edit: just read up on it. Apparently all almost objects in java are pointers to the original object created with the 'new' keyword. Also, I should have you know that you are reading my signature.
February 20, 201510 yr won't that remove it from the iterator object, and not forge? edit: just read up on it. Apparently all almost objects in java are pointers to the original object created with the 'new' keyword. Objects are passed by reference, not by value, always. Don't ask for support per PM! They'll get ignored! | If a post helped you, click the "Thank You" button at the top right corner of said post! | mah twitter This thread makes me sad because people just post copy-paste-ready code when it's obvious that the OP has little to no programming experience. This is not how learning works.
February 21, 201510 yr Author thanks, ben. anyway, I updated the code, the IF statement now is directly comparing the block from item and the quarry block. if I did getIconName(), forge would delete all the recipes. The code will now not find the quarry, but i'll keep you guys updated in the tag code: List<IRecipe> recipes = CraftingManager.getInstance().getRecipeList(); Iterator<IRecipe> recipesIt = recipes.iterator(); int i = -1; System.out.println("finding quarry"); while(recipesIt.hasNext()){ i++; IRecipe rec = recipesIt.next(); ItemStack result = rec.getRecipeOutput(); if(result != null && Block.getBlockFromItem(result.getItem()) ==BuildCraftFactory.quarryBlock){ System.out.println("found quarry"); recipesIt.remove(); } } edit 1: code changed. it behaves the same way. I beleive this to mean that I am comtaring the wrong thing, or the quarry is not being initialised. I think this is because buildcraft throws an error AFTER it tries to look for the quarry, signifying that my dependency parameter is not working as intended. new code: List<IRecipe> recipes = CraftingManager.getInstance().getRecipeList(); Iterator<IRecipe> recipesIt = recipes.iterator(); int i = -1; System.out.println("finding quarry"); while(recipesIt.hasNext()){ i++; IRecipe rec = recipesIt.next(); ItemStack result = rec.getRecipeOutput(); if(result != null && Block.getBlockFromItem(result.getItem()).getLocalizedName() ==BuildCraftFactory.quarryBlock.getLocalizedName()){ System.out.println("found quarry"); recipesIt.remove(); } } Stacktrace: [18:16:56] [Client thread/INFO] [sTDOUT]: [com.tuskiomi.styx.StyxMain:postInit:30]: finding quarry [18:16:57] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 11 mods [18:16:57] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Example Mod, FMLFileResourcePack:Styx, FMLFileResourcePack:BC Silicon, FMLFileResourcePack:BuildCraft, FMLFileResourcePack:BC Transport, FMLFileResourcePack:BC Builders, FMLFileResourcePack:BC Energy, FMLFileResourcePack:BC Factory [18:16:58] [Client thread/INFO]: Created: 512x512 textures/blocks-atlas [18:16:58] [Client thread/ERROR]: Using missing texture, unable to load buildcraft:textures/items/triggers/action_machinecontrol_mode.png java.io.FileNotFoundException: buildcraft:textures/items/triggers/action_machinecontrol_mode.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_31] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_31] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:85) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] Also, I should have you know that you are reading my signature.
February 21, 201510 yr Author anyone else want to take a whack at my predicament? Also, I should have you know that you are reading my signature.
February 22, 201510 yr Author UPDATE: I changed the code to find things that are in vanilla minecraft. the code found them. this may be a problem with forge? no. buildcraft is using different methods. I'm going to add code to remove the recipe on the splash screen. Also, I should have you know that you are reading my signature.
February 23, 201510 yr Author update: fixed the problem. i did this by instead making sure my mod is required after the child mods, instead of the main mod Also, I should have you know that you are reading my signature.
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.