From da1574c1ce98a7dca0d877fa95ed3eac7801fbbf Mon Sep 17 00:00:00 2001 From: jani270 <69345714+jani270@users.noreply.github.com> Date: Sun, 22 Sep 2024 19:31:04 +0200 Subject: fix: Core of the Mountain having the wrong upgrade cost (#1368) --- constants/hotmlayout.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/constants/hotmlayout.json b/constants/hotmlayout.json index bf3408df..966b6c3b 100644 --- a/constants/hotmlayout.json +++ b/constants/hotmlayout.json @@ -288,9 +288,9 @@ "x": 3, "y": 5, "maxLevel": 10, - "powder": "(if (lt level 6) MITHRIL (if (lt level 8) GEMSTONE GLACITE))", + "powder": "(if (lt level 4) MITHRIL (if (lt level 8) GEMSTONE GLACITE))", "item": ":REDSTONE_BLOCK", - "cost": "(list.at (list.new 0 50000 75000 100000 125000 500000 750000 1000000 1250000 1500000 0) level)", + "cost": "(list.at (list.new 0 50000 100000 200000 300000 400000 600000 750000 1000000 1250000 0) level)", "lore": [ { "text": "§7§8+§c1 Pickaxe Ability Level", -- cgit