Add space in "spool up"
This commit is contained in:
@@ -153,7 +153,7 @@ class FirepowerViewFull(StatsView):
|
||||
if roundToPrec(preSpool, prec) == roundToPrec(fullSpool, prec):
|
||||
return ""
|
||||
else:
|
||||
return "Spoolup {}: {}-{}".format(
|
||||
return "Spool up {}: {}-{}".format(
|
||||
statName,
|
||||
formatAmount(preSpool, prec, lowest, highest),
|
||||
formatAmount(fullSpool, prec, lowest, highest))
|
||||
|
||||
@@ -96,7 +96,7 @@ class OutgoingViewFull(StatsView):
|
||||
if roundToPrec(preSpool, prec) == roundToPrec(fullSpool, prec):
|
||||
return text
|
||||
else:
|
||||
return "{}, spoolup {}-{}".format(
|
||||
return "{}, spool up {}-{}".format(
|
||||
text,
|
||||
formatAmount(preSpool, prec, lowest, highest),
|
||||
formatAmount(fullSpool, prec, lowest, highest))
|
||||
|
||||
@@ -95,7 +95,7 @@ class OutgoingViewMinimal(StatsView):
|
||||
if roundToPrec(preSpool, prec) == roundToPrec(fullSpool, prec):
|
||||
return text
|
||||
else:
|
||||
return "{}, spoolup {}-{}".format(
|
||||
return "{}, spool up {}-{}".format(
|
||||
text,
|
||||
formatAmount(preSpool, prec, lowest, highest),
|
||||
formatAmount(fullSpool, prec, lowest, highest))
|
||||
|
||||
@@ -348,7 +348,7 @@ class Miscellanea(ViewColumn):
|
||||
if not rps:
|
||||
return "", None
|
||||
text = "{0}/s".format(formatAmount(rps, 3, 0, 3, forceSign=True))
|
||||
tooltip = "Armor repaired per second, spoolup {}-{}".format(
|
||||
tooltip = "Armor repaired per second, spool up {}-{}".format(
|
||||
formatAmount(rpsPreSpool, 3, 0, 3),
|
||||
formatAmount(rpsFullSpool, 3, 0, 3))
|
||||
return text, tooltip
|
||||
|
||||
Reference in New Issue
Block a user