From f255ff070d8382941debe7855c17853fd38799a9 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 1 Dec 2020 14:33:23 -0500 Subject: [PATCH] v0.9.1: fixed arcane vision stacking on itself and replacing itself --- .../shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 &&