From 4a9a48d23f847fd39d63a968acd9820bd3da62cc Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 12 May 2024 12:02:44 -0400 Subject: [PATCH] v2.4.0: fixed mossy clump upgrade cost not actually being increased =S --- .../shatteredpixeldungeon/items/trinkets/MossyClump.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/trinkets/MossyClump.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/trinkets/MossyClump.java index f7acac22c..5d0610b94 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/trinkets/MossyClump.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/trinkets/MossyClump.java @@ -38,10 +38,8 @@ public class MossyClump extends Trinket { @Override protected int upgradeEnergyCost() { - //5 -> 10(15) -> 15(30) -> 20(50) - return 10+5*level(); //5 -> 10(15) -> 20(35) -> 30(65) - //return 10+10*level(); + return 10+10*level(); } @Override