Fixed issue with RF not working as expected
This commit is contained in:
commit
ee86b97429
1 changed files with 1 additions and 1 deletions
|
@ -162,7 +162,7 @@ public abstract class TilePowerAcceptor extends RFProviderTile implements
|
|||
public int extractEnergy(EnumFacing from, int maxExtract, boolean simulate) {
|
||||
if (!PowerSystem.RFPOWENET)
|
||||
return 0;
|
||||
if (!canAcceptEnergy(from)) {
|
||||
if (!canProvideEnergy(from)) {
|
||||
return 0;
|
||||
}
|
||||
maxExtract *= ConfigTechReborn.euPerRF;
|
||||
|
|
Loading…
Reference in a new issue