mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Remove comparison to self
This commit is contained in:
parent
9abb4868d6
commit
d088aba777
1 changed files with 2 additions and 2 deletions
|
@ -140,11 +140,11 @@ public class TileEntityPhantomPlacer extends TileEntityInventoryBase implements
|
||||||
@Override
|
@Override
|
||||||
public boolean hasBoundPosition() {
|
public boolean hasBoundPosition() {
|
||||||
if (this.boundPosition != null) {
|
if (this.boundPosition != null) {
|
||||||
if (this.level.getBlockEntity(this.boundPosition) instanceof IPhantomTile || this.getBlockPos().getX() == this.boundPosition.getX() && this.getBlockPos().getY() == this.boundPosition.getY() && this.getBlockPos().getZ() == this.boundPosition.getZ() && this.level.dimensionType() == this.level.dimensionType()) {
|
if (this.level.getBlockEntity(this.boundPosition) instanceof IPhantomTile || this.getBlockPos().getX() == this.boundPosition.getX() && this.getBlockPos().getY() == this.boundPosition.getY() && this.getBlockPos().getZ() == this.boundPosition.getZ()) { // && this.level.dimensionType() == this.level.dimensionType()
|
||||||
this.boundPosition = null;
|
this.boundPosition = null;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return this.level.dimensionType() == this.level.dimensionType();
|
return true;//this.level.dimensionType() == this.level.dimensionType();
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue