Posted March 8, 201411 yr I'm trying to get a block that is next to my custom furnace. In TileEntityBrickFurnace class I simply wrote: System.out.println(this.worldObj.getBlockId(xCoord + 1, yCoord, zCoord)); The results look like this: 2014-03-08 13:02:00 [iNFO] [sTDOUT] 9 2014-03-08 13:02:00 [iNFO] [sTDOUT] 0 2014-03-08 13:02:00 [iNFO] [sTDOUT] 9 2014-03-08 13:02:00 [iNFO] [sTDOUT] 0 2014-03-08 13:02:00 [iNFO] [sTDOUT] 9 2014-03-08 13:02:00 [iNFO] [sTDOUT] 0 2014-03-08 13:02:00 [iNFO] [sTDOUT] 9 2014-03-08 13:02:00 [iNFO] [sTDOUT] 0 2014-03-08 13:02:00 [iNFO] [sTDOUT] 9 2014-03-08 13:02:00 [iNFO] [sTDOUT] 0 2014-03-08 13:02:00 [iNFO] [sTDOUT] 9 2014-03-08 13:02:00 [iNFO] [sTDOUT] 0 2014-03-08 13:02:00 [iNFO] [sTDOUT] 9 2014-03-08 13:02:00 [iNFO] [sTDOUT] 0 2014-03-08 13:02:00 [iNFO] [sTDOUT] 9 2014-03-08 13:02:00 [iNFO] [sTDOUT] 0 Instead of just telling me its 9 or 0, it alternates for some reason.
March 8, 201411 yr I'm trying to get a block that is next to my custom furnace. In TileEntityBrickFurnace class I simply wrote: System.out.println(this.worldObj.getBlockId(xCoord + 1, yCoord, zCoord)); The results look like this: 2014-03-08 13:02:00 [iNFO] [sTDOUT] 9 2014-03-08 13:02:00 [iNFO] [sTDOUT] 0 2014-03-08 13:02:00 [iNFO] [sTDOUT] 9 2014-03-08 13:02:00 [iNFO] [sTDOUT] 0 2014-03-08 13:02:00 [iNFO] [sTDOUT] 9 2014-03-08 13:02:00 [iNFO] [sTDOUT] 0 2014-03-08 13:02:00 [iNFO] [sTDOUT] 9 2014-03-08 13:02:00 [iNFO] [sTDOUT] 0 2014-03-08 13:02:00 [iNFO] [sTDOUT] 9 2014-03-08 13:02:00 [iNFO] [sTDOUT] 0 2014-03-08 13:02:00 [iNFO] [sTDOUT] 9 2014-03-08 13:02:00 [iNFO] [sTDOUT] 0 2014-03-08 13:02:00 [iNFO] [sTDOUT] 9 2014-03-08 13:02:00 [iNFO] [sTDOUT] 0 2014-03-08 13:02:00 [iNFO] [sTDOUT] 9 2014-03-08 13:02:00 [iNFO] [sTDOUT] 0 Instead of just telling me its 9 or 0, it alternates for some reason. Ok. I am not an expert but I'm pretty sure its because of server and client issues. I'm back from being gone for... I think its been about a year. I'm pretty sure nobody remembers me, but hello anybody who does!
March 8, 201411 yr Author That is what I thought, so I decided to do this: if(!this.worldObj.isRemote) { System.out.println(this.worldObj.getBlockId(xCoord + 1, yCoord, zCoord)); } Unfortunately same thing.
March 8, 201411 yr Did you try debugging? Also make sure there is only one furnace. http://i.imgur.com/YOLa0KX.png[/img]
March 8, 201411 yr Author I'm beating myself with a stick right now. Turns out I had 2 of them placed and for some reason didn't realize that could be the issue. Thanks a lot for help and sorry for the trouble!
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.