Transformers now declare that they can output multiple packets per tick

This commit is contained in:
coderbot 2019-01-28 17:38:02 -08:00
parent 12b892f0dc
commit 3e44fc369f

View file

@ -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