1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2024-10-27 20:34:29 +00:00

Comply with ESLint.

This commit is contained in:
hexagonhexagon 2020-05-29 19:33:38 -04:00
parent a92d703395
commit 4409dbf17f

View File

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