From f29b00bf994bff65194187c72cccbccaed1093bf Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 17 Sep 2014 18:53:04 -0400 Subject: [PATCH] V0.2.0b: Corrected artifact sale value --- .../shatteredpixeldungeon/items/artifacts/Artifact.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/Artifact.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/Artifact.java index 740623032..858844802 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/Artifact.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/Artifact.java @@ -192,7 +192,7 @@ public class Artifact extends KindofMisc { public int price() { int price = 200; if (level > 0) - price += 30*level; + price += 30*((level*10)/levelCap); if (cursed && cursedKnown) { price /= 2; }