Renamed TileMeta to TileRotation

This commit is contained in:
modmuss50 2015-09-19 09:31:24 +01:00
parent aacc73102d
commit 148715111f
34 changed files with 54 additions and 68 deletions

View file

@ -87,12 +87,12 @@ public class TileLesu extends TilePowerAcceptor {//TODO wrench
@Override
public boolean canAcceptEnergy(ForgeDirection direction) {
return Functions.getIntDirFromDirection(direction) != getMeta();
return Functions.getIntDirFromDirection(direction) != getRotation();
}
@Override
public boolean canProvideEnergy(ForgeDirection direction) {
return Functions.getIntDirFromDirection(direction) == getMeta();
return Functions.getIntDirFromDirection(direction) == getRotation();
}
@Override