diff --git a/artwork/itch.io/screenshots/10.png b/artwork/itch.io/screenshots/10.png new file mode 100644 index 00000000..87308cee Binary files /dev/null and b/artwork/itch.io/screenshots/10.png differ diff --git a/src/css/ingame_hud/shop.scss b/src/css/ingame_hud/shop.scss index 20a61667..66e46159 100644 --- a/src/css/ingame_hud/shop.scss +++ b/src/css/ingame_hud/shop.scss @@ -46,7 +46,7 @@ color: #fff; text-align: center; font-weight: bold; - @include S(width, 50px); + @include S(min-width, 50px); @include S(padding, 0px, 5px); &[data-tier="0"] { diff --git a/src/js/game/hud/parts/shop.js b/src/js/game/hud/parts/shop.js index 3a273459..94da6331 100644 --- a/src/js/game/hud/parts/shop.js +++ b/src/js/game/hud/parts/shop.js @@ -98,7 +98,9 @@ export class HUDShop extends BaseHUDPart { // Set description handle.elemDescription.innerText = T.shopUpgrades[upgradeId].description .replace("", currentTierMultiplier.toString()) - .replace("", (currentTierMultiplier + tierHandle.improvement).toString()); + .replace("", (currentTierMultiplier + tierHandle.improvement).toString()) + // Backwards compatibility + .replace("", (tierHandle.improvement * 100.0).toString()); tierHandle.required.forEach(({ shape, amount }) => { const container = makeDiv(handle.elemRequirements, null, ["requirement"]);