Fixed Zero Point Module support for IC2 EU
This commit is contained in:
parent
e17103e52c
commit
a6123cbd15
1 changed files with 2 additions and 1 deletions
|
@ -616,7 +616,8 @@ public abstract class TileEntityAbstractEnergy extends TileEntityAbstractEnergyB
|
|||
WarpDrive.logger.info(String.format("%s [IC2]getSourceTier() => %d",
|
||||
this, tier ));
|
||||
}
|
||||
return tier;
|
||||
// IC2 caps at tier 4 (EV), cables burn & block explodes after that, so we might as well enforce it
|
||||
return Math.min(4, tier);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue