Transformers now declare that they can output multiple packets per tick
This commit is contained in:
parent
12b892f0dc
commit
3e44fc369f
1 changed files with 3 additions and 0 deletions
|
@ -73,6 +73,9 @@ public class TileTransformer extends TilePowerAcceptor
|
|||
this.maxInput = tier.getMaxInput();
|
||||
this.maxOutput = tier.getMaxOutput();
|
||||
this.maxStorage = tier.getMaxInput() * 2;
|
||||
|
||||
// Should always be 4, except if we're tier MICRO, in which it will be 1.
|
||||
super.setMaxPacketsPerTick(tier.getMaxOutput() / ouputTier.getMaxInput());
|
||||
}
|
||||
|
||||
// TilePowerAcceptor
|
||||
|
|
Loading…
Reference in a new issue