fix crash with new CoFHCore
This commit is contained in:
parent
10c8498f7b
commit
8f709f680f
1 changed files with 1 additions and 4 deletions
|
@ -165,13 +165,10 @@ public abstract class TileBuildCraft extends TileEntity implements ISynchronized
|
|||
}
|
||||
}
|
||||
|
||||
public World getWorld() {
|
||||
return worldObj;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return ((xCoord * 37 + yCoord) * 37 + zCoord) * 37 + worldObj.provider.dimensionId * 37;
|
||||
return ((xCoord * 37 + yCoord) * 37 + zCoord);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue