Typo currentEffiency

This commit is contained in:
thatsIch 2014-09-20 22:46:41 +02:00
parent 2b78573dd3
commit 88ff766eef
2 changed files with 2 additions and 2 deletions

View file

@ -64,7 +64,7 @@ public class ContainerSpatialIOPort extends AEBaseContainer
currentPower = (long) (100.0 * eg.getStoredPower());
maxPower = (long) (100.0 * eg.getMaxStoredPower());
reqPower = (long) (100.0 * sc.requiredPower());
eff = (long) (100.0f * sc.currentEffiency());
eff = (long) (100.0f * sc.currentEfficiency());
}
}
}

View file

@ -183,7 +183,7 @@ public class SpatialPylonCache implements IGridCache, ISpatialCache
}
@Override
public float currentEffiency()
public float currentEfficiency()
{
return (float) effiency * 100;
}