diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/Potion.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/Potion.java index 9570454eb..94fdfe7fc 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/Potion.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/Potion.java @@ -320,7 +320,7 @@ public class Potion extends Item { if (!anonymous) { Catalog.countUse(getClass()); if (Random.Float() < talentChance) { - Talent.onPotionUsed(curUser, curUser.pos, talentFactor); + Talent.onPotionUsed(curUser, cell, talentFactor); } }