diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/brews/AquaBrew.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/brews/AquaBrew.java index e77aa4fba..35c897008 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/brews/AquaBrew.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/brews/AquaBrew.java @@ -40,7 +40,7 @@ public class AquaBrew extends Brew { geyser.pos = cell; geyser.source = this; - int userPos = curUser.pos; + int userPos = curUser == null ? cell : curUser.pos; if (userPos != cell){ Ballistica aim = new Ballistica(userPos, cell, Ballistica.STOP_TARGET); if (aim.path.size() > aim.dist+1) {