comments and tabs

This commit is contained in:
Astavie 2020-07-07 16:42:39 +02:00
parent fbe04c94aa
commit e251a25bb7
1 changed files with 3 additions and 3 deletions

View File

@ -963,7 +963,7 @@ export function formatItemsPerSecond(speed, double = false, separator = T.global
return speed === 1.0
? T.ingame.buildingPlacement.infoTexts.oneItemPerSecond
: T.ingame.buildingPlacement.infoTexts.itemsPerSecond.replace(
"<x>",
round2Digits(speed).toString().replace(".", separator)
) + (double ? " " + T.ingame.buildingPlacement.infoTexts.itemsPerSecondDouble : "");
"<x>",
round2Digits(speed).toString().replace(".", separator)
) + (double ? " " + T.ingame.buildingPlacement.infoTexts.itemsPerSecondDouble : "");
}