From cb661755be1f28d5ca775f67d07cf3188b4281c3 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 8 Mar 2015 15:52:50 -0400 Subject: [PATCH] v0.2.4c: buffed the unstable spellbook again, now charges significantly faster. --- .../items/artifacts/UnstableSpellbook.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java index 8527defca..0dd9c0567 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java @@ -180,7 +180,7 @@ public class UnstableSpellbook extends Artifact { @Override public boolean act() { if (charge < chargeCap && !cursed) { - partialCharge += 1 / (200f - (chargeCap - charge)*15f); + partialCharge += 1 / (150f - (chargeCap - charge)*15f); if (partialCharge >= 1) { partialCharge --;