Posted July 4, 201312 yr The current version I'm working with is minecraft 1.5.2 and MinecraftForge v7.8.0.725, now yeah i know taht's not the latest version of forge but don't think that's the problem in this case. Now the mod works fine, until you open up the gui for the crafting tables we have in simcraft, no they are based on the minecraft double chest code, but it's used for a crafting table, this worked like a charm from minecraft version 1.2.5 up until now. What's happening now is in eclipse it works and theirs no error so all is good to go, I recompile the mod reob it and setup a 1.5.2 instance of minecraft with same version of forge used in eclipse, but it keeps crashin on the opening of the gui after it's recompiled. So the question is does anybody have any idea where to look for the problem, I mean it's virtually working in eclipse, but not after being recompiled it doesn't make sense and being a semi noob I don't really know where to look or how to fix something that's already working inside eclipse any suggestion would be appreciated.
July 4, 201312 yr Author The Crash Report : http://pastebin.com/Zd2Yzbre InventorySubCraft : http://pastebin.com/b7ELTwvA ContainerIronWorkBench: http://pastebin.com/HVcNmNXP GuiHandler: http://pastebin.com/V6G6tY1K blockIronWorkBench: http://pastebin.com/41ErnKNQ TileEntityIronWorkBench: http://pastebin.com/AaEi4ma4 Think that's about it, bear in mind this works in eclipse it also worked on version 1.4.7 only place this now crashes is after a recompile and running minecraft outside of eclipse.
July 4, 201312 yr Author Check if you have the same Forge and Minecraft version inside and outside of eclipse. Yeah already checked that and they are the same on both, only difference would be that one comes from the src that forge creates and in game it's the universal jar that's drag into the minecraft jar Also checked the latest 1.5.2 forge build in game and same results.
July 4, 201312 yr error is being caused by this bit, but you should all ready know that. public ItemStack getStackInSlot(int var1) { return var1 >= this.getSizeInventory() ? null : this.parent.getStackInSlot(var1); } try splitting it up like so, and give us the new error report public ItemStack getStackInSlot(int var1) { ItemStack stack = null; if(var1 < this.getSizeInventory()) stack = this.parent.getStackInSlot(var1); // I think error will be thrown here. return stack; } given that it is a java.lang.AbstractMethodError, It is probably that there is an unimplemented method in the class . I'm not definite, but you could try removing any of the unnecessary implementations in the class public class TileEntityIronWorkBench extends TileEntityCommonWorkbench implements IInventory, IBenchHammer, NetworkTileEntityEventListener, NetworkClientTileEntityEventListener i.e. if they are implemented by the super class this could be causing you issues by re-implementing them in the sub class, but again not definite just trying to help. (try removing IInventory for example, as I guess that this is implemented by TileEntityCommonWorkbench, the implementation will carry down to the sub classes so that they can also be called as IInventory without having to re state it) github
July 4, 201312 yr Author error is being caused by this bit, but you should all ready know that. public ItemStack getStackInSlot(int var1) { return var1 >= this.getSizeInventory() ? null : this.parent.getStackInSlot(var1); } try splitting it up like so, and give us the new error report public ItemStack getStackInSlot(int var1) { ItemStack stack = null; if(var1 < this.getSizeInventory()) stack = this.parent.getStackInSlot(var1); // I think error will be thrown here. return stack; } given that it is a java.lang.AbstractMethodError, It is probably that there is an unimplemented method in the class . I'm not definite, but you could try removing any of the unnecessary implementations in the class public class TileEntityIronWorkBench extends TileEntityCommonWorkbench implements IInventory, IBenchHammer, NetworkTileEntityEventListener, NetworkClientTileEntityEventListener i.e. if they are implemented by the super class this could be causing you issues by re-implementing them in the sub class, but again not definite just trying to help. (try removing IInventory for example, as I guess that this is implemented by TileEntityCommonWorkbench, the implementation will carry down to the sub classes so that they can also be called as IInventory without having to re state it) New error report: http://pastebin.com/sJzkRYmz I haven't implemented anything in sub classes that has been implemented in parent class I wish my java was better to tell you the truth, but been battling with updating to 1.5.2 for 2 weeks now on a mod thats almost twice the size of minecraft, and this is the last problem i have which i just don't understand why it can work in eclipse but not after recompiling and in game. What i do see is that getSizeInventory is 9 in the sub class indicating the actual crafting grid to use but the actual block has 27 slots indicated in TileEntity, so might be that will play around but any input is more than welcome cause that just helps one think in different directions.
July 4, 201312 yr I can't find where you're creating the getStackInSlot(int var1) method in TileEntityIronWorkBench. My previous response was based on the assumption that this was declared in the super class, but as you're saying that this is not the case (as getStackInSlot(int var1) is an IInventory method) then i don't even know how this is managing to even run in eclipse. a java.lang.AbstractMethodError gets thrown by java when you attempt to call a method which has no method body. i.e. in an interface you create only the method names and parameters, there are no bracers following them. If you do not fill the method in the implementation then this method will be impossible to call giving you the mentioned error http://docs.oracle.com/javase/6/docs/api/java/lang/AbstractMethodError.html github
July 4, 201312 yr Author I can't find where you're creating the getStackInSlot(int var1) method in TileEntityIronWorkBench. My previous response was based on the assumption that this was declared in the super class, but as you're saying that this is not the case (as getStackInSlot(int var1) is an IInventory method) then i don't even know how this is managing to even run in eclipse. a java.lang.AbstractMethodError gets thrown by java when you attempt to call a method which has no method body. i.e. in an interface you create only the method names and parameters, there are no bracers following them. If you do not fill the method in the implementation then this method will be impossible to call giving you the mentioned error http://docs.oracle.com/javase/6/docs/api/java/lang/AbstractMethodError.html Yeah that gets called in TileEntityCommonWorkbench public ItemStack getStackInSlot(int var1) { return this.inventory[var1]; } i think the biggest part that confuses me is why it's working in eclispe worked in 1.4.7 without hiccups but all of a sudden in 1.5.2 and only after recompiling it fails to load using the same forge version etc, that part really screws with me, and fixing anything where I have to recompile and reob to test is beyond time consuming Edit: InventorySubCraft is basicly a clone of class file InventoryCrafting and extends to it and InventoryCrafting did not change at all from 1.4.7 to 1.5.2 except for one extra method added to 1.5.2, so I'm not even sure that it's the cause of the crash.
July 4, 201312 yr public class TileEntityIronWorkBench extends TileEntityCommonWorkbench implements IInventory, IBenchHammer, NetworkTileEntityEventListener, NetworkClientTileEntityEventListener I haven't implemented anything in sub classes that has been implemented in parent class Yeah that gets called in TileEntityCommonWorkbench public ItemStack getStackInSlot(int var1) { return this.inventory[var1]; } so does TileEntityCommonWorkbench implement IInventory or not. You've confused me now. try adding @Override public ItemStack getStackInSlot(int var1) { return super.getStackInSlot(var1); } to TileEntityIronWorkBench github
July 4, 201312 yr Author TileEntityCommonWorkbench : http://pastebin.com/1cMgudFv Will try your suggestion and let you know
July 4, 201312 yr TileEntityCommonWorkbench : http://pastebin.com/1cMgudFv Will try your suggestion and let you know you may need to remove the method from TileEntityCommonWorkbench and put it into TileEntityIronWorkBench, or make TileEntityCommonWorkbench implement IInventory. These are other possible solutions if my previous doesn't work github
July 4, 201312 yr Author Quick question what would The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded actually means
July 4, 201312 yr I have not got a clue... what it says on the tin i would guess, but as to what's causing it I wouldn't be able to say... github
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.