diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/ClericSpell.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/ClericSpell.java index b10d3643a..e2871890d 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/ClericSpell.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/ClericSpell.java @@ -139,6 +139,7 @@ public abstract class ClericSpell { spells.add(RecallGlyph.INSTANCE); spells.add(Sunray.INSTANCE); spells.add(DivineSense.INSTANCE); + spells.add(BlessSpell.INSTANCE); spells.add(Cleanse.INSTANCE); spells.add(Radiance.INSTANCE); spells.add(HolyLance.INSTANCE); diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HolyTome.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HolyTome.java index 63a48e82b..2bc7d83df 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HolyTome.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HolyTome.java @@ -28,7 +28,6 @@ import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Regeneration; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Talent; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.spells.ClericSpell; -import com.shatteredpixel.shatteredpixeldungeon.actors.hero.spells.DetectCurse; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.spells.TargetedClericSpell; import com.shatteredpixel.shatteredpixeldungeon.items.Item; import com.shatteredpixel.shatteredpixeldungeon.items.bags.Bag; @@ -307,11 +306,7 @@ public class HolyTome extends Artifact { @Override public int indicatorColor() { - if (quickSpell == DetectCurse.INSTANCE){ - return 0x00A0FF; - } else { - return 0x002157; - } + return 0x002157; } @Override