Fixed transporter tier calculations

This commit is contained in:
aidancbrady 2015-11-27 12:30:49 -07:00
parent f5c48f60e6
commit fbd692b4e0

View file

@ -446,6 +446,6 @@ public class PartLogisticalTransporter extends PartTransmitter<IInventory, Inven
public double getCost()
{
return 5D / tier.speed;
return (double)TransporterTier.ULTIMATE.speed / (double)tier.speed;
}
}