diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java index 41bb314ca..b98f3e0a3 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java @@ -183,7 +183,7 @@ public class UnstableSpellbook extends Artifact { @Override public boolean act() { if (charge < chargeCap && !cursed) { - partialCharge += 1 / (300f - (chargeCap - charge)*30f); + partialCharge += 1 / (200f - (chargeCap - charge)*20f); if (partialCharge >= 1) { partialCharge --;