From 3c3cb5924f74e2a021e51a7200a331a60d095a9b Mon Sep 17 00:00:00 2001 From: tobspr Date: Sun, 23 May 2021 16:40:09 +0200 Subject: [PATCH] Fix typo --- src/js/core/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/core/utils.js b/src/js/core/utils.js index 8f6bb5d6..842e6151 100644 --- a/src/js/core/utils.js +++ b/src/js/core/utils.js @@ -579,7 +579,7 @@ export function formatItemsPerSecond(speed, double = false, separator = T.global : T.ingame.buildingPlacement.infoTexts.itemsPerSecond.replace( "", round2Digits(speed).toString().replace(".", separator) - )) + (double ? "ยทยท" + T.ingame.buildingPlacement.infoTexts.itemsPerSecondDouble : "") + )) + (double ? " " + T.ingame.buildingPlacement.infoTexts.itemsPerSecondDouble : "") ); }