Jump to content

Recommended Posts

Posted

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.

Posted
  On 2/18/2015 at 11:49 PM, tuskiomi said:

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);

Posted

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.

Posted

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.

Posted
  On 2/19/2015 at 12:09 PM, tuskiomi said:

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.

Posted
  On 2/19/2015 at 3:36 PM, Anon10W1z said:

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.

Posted

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.

Posted

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

  Quote

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.

Posted

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.

Posted

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.

Posted
  On 2/20/2015 at 3:44 PM, tuskiomi said:

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

  Quote

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.

Posted

thanks, ben. :D

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.

Posted

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.

Posted

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.

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • One fateful day, my life took an unexpected turn when I received a phone call that would change everything. The voice on the other end claimed to be from my bank, delivering alarming news: my account had been frozen due to suspicious activity. Panic surged through me as I listened, my heart racing at the thought of losing my hard-earned savings. At that moment, I had about 130,000 USD in my bank, equivalent to around 2 BTC. The caller spoke with such authority and urgency that I felt compelled to act immediately. They insisted that the only way to protect my funds was to transfer Bitcoin BTC to them for "safekeeping. In my fear and confusion, I believed I was making a wise decision to secure my finances. Without fully grasping the implications, I complied and transferred the equivalent of my savings in Bitcoin, convinced I was safeguarding my money. It wasn’t until later that the reality of my situation hit me like a ton of bricks. I had been duped, and the weight of my mistake was unbearable. Shame and disbelief washed over me as I realized how easily I had been manipulated. How could I have let this happen? The feeling of vulnerability was overwhelming, and I was left grappling with the consequences of my actions. I learned about a recovery expert named RAPID DIGITAL RECOVERY. Desperate to reclaim what I had lost, I reached out for help. RAPID DIGITAL RECOVERY was knowledgeable and reassuring, explaining that there was a chance to trace the Bitcoin I had sent. With their expertise, they tracked the stolen funds to a peer-to-peer (P2P) exchanger based in the United Kingdom. This revelation sparked a glimmer of hope within me, a sense that perhaps justice could be served. RAPID DIGITAL RECOVERY collaborated with Action Fraud, the UK's national reporting center for fraud and cybercrime, to take decisive action against the scammers. Knowing that law enforcement was involved provided me with a sense of relief. The thought that the culprits behind my suffering could be brought to justice was comforting. In an incredible turn of events, RAPID DIGITAL RECOVERY successfully recovered all my funds, restoring my faith in the possibility of justice and recovery.
    • My game crashed in 1.12.2 here is the crash log https://pastebin.com/6MYu4mGy
    • I created a Modpack Forge in 1.20.1 for my friend and I. There are 135 mods including "Essential". I was able to play an 8 hour session without problem but when I relaunch my world, I crashed when I opened the menu of the game "ESC" or after about 15 minutes of session. I can't find the source of the problem. Latest.log and Debug.log : https://paste.ee/p/B0npvlRw
    • Hello! Faced with the same problem. Can you please describe in more detail how you rewrote the toNetwork and fromNetwork methods?
    • Why not?   Please explain what you have tried, in detail. Step by step is installing the server, placing mod .jar files in the mods folder within the folder you installed the server, and running the run.bat file. If this is not working for you, please post the debug.log from the logs folder to a site like https://mclo.gs and post the link to it here.
  • 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.