Jump to content

java.lang.NoSuchFieldError: iron [MC 1.7.2][Forge 10.0.1024]


Recommended Posts

Posted

I am having the following problem with my mod.

 

When I launch it, I get the following error:

java.lang.NoSuchFieldError: iron
at at kris91268.lbd.Blocks.BlockLightBridgeSource.<init>(BlockLightBridgeSource.java:37)
...rest ommited...

 

This only appears to happen when launching my mod with the normal Minecraft launcher; it does not happen in my mod development environment (ForgeGradle)

 

Snippet of BlockLightBridgeSource.java where the error comes from:

public BlockLightBridgeSource()
{
	super(Material.iron); // this is where the error originates.
	setHardness(1.5F);
	setResistance(6.0F);
	setStepSound(Block.soundTypeMetal);
	setBlockName("lightBridgeSource");
	setBlockTextureName("lbd:lightBridgeSource");
	setCreativeTab(CreativeTabs.tabRedstone);
}

 

Any help is much appreciated!

-kris91268

Posted

From what I have seen, it appears to compile automatically. My compiled files are in the bin folder where my ForgeGradle workspace is set up. Is this way not the correct way to do this?

Posted

No! What The bin folder contains, are the deobfuscated Files of your mod. You have to run gradlew.bat build to get working obfuscated.class files. The process converts all fields, methods and types into obfuscated ones. If you run the command you get a working mod jar in build/libs.

try {

...

}catch(Throwable t) {

    MagicAppErrorSolver.solveProblem(t, this);

}

//Programmers will lose work

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



×
×
  • Create New...

Important Information

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