Fixed crash when RF is disabled
This commit is contained in:
parent
2b979f4c4c
commit
11e680500f
1 changed files with 1 additions and 1 deletions
|
@ -281,7 +281,7 @@ public abstract class TilePowerAcceptor extends RFProviderTile implements
|
|||
}
|
||||
|
||||
public int getEnergyScaled(int scale) {
|
||||
return (int) ((getEnergyStored(ForgeDirection.UNKNOWN) * scale / getMaxEnergyStored(ForgeDirection.UNKNOWN)) * ConfigTechReborn.euPerRF);
|
||||
return (int) ((energy * scale / getMaxOutput() * ConfigTechReborn.euPerRF));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue