I have tried to make a custom furnace for my mod using these tutorials:
the person who made the mod said I should make the next lines of code:
@Override
public boolean isUseableByPlayer(EntityPlayer p_70300_1_) {
return this.worldObj.getTileEntity(this.xCoord, this.yCoord, this.zCoord) != this ? false : player.getDistanceSq((double) this.xCoord + 0.5D, (double) this.yCoord + 0.5D, (double) this.zCoord + 0.5D) <= 64.0D;
}
but eclipse says that it cannot resolve player even though i did exactly what he did!
edit: I narrowed the mod down to only this error and it probebly makes my mod crash (I think) crash report:
http://pastebin.com/jzCEKSLN
what do i have to do to make it work?