v3.0.0: fixed minor errors with some spells and action indicator

This commit is contained in:
Evan Debenham
2024-12-06 16:16:42 -05:00
parent 0478c250f3
commit b16a8ade17
2 changed files with 2 additions and 6 deletions

View File

@@ -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);

View File

@@ -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