diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java index 96f672a0b..d51d0dfa6 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java @@ -181,7 +181,7 @@ public abstract class Wand extends Item { protected static void processSoulMark(Char target, int wandLevel, int chargesUsed){ if (Dungeon.hero.hasTalent(Talent.ARCANE_VISION)) { int dur = 5 + 5*Dungeon.hero.pointsInTalent(Talent.ARCANE_VISION); - Buff.affect(Dungeon.hero, TalismanOfForesight.CharAwareness.class, dur).charID = target.id(); + Buff.append(Dungeon.hero, TalismanOfForesight.CharAwareness.class, dur).charID = target.id(); } if (target != Dungeon.hero &&