From 2a892012b23f802c1763c6675bf731968d42a2c7 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 2 Dec 2023 09:32:34 +0100 Subject: [PATCH] bow:: The warped space distracts you from reloading while staying in place --- orbs.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/orbs.cpp b/orbs.cpp index 09427a07..8db9399c 100644 --- a/orbs.cpp +++ b/orbs.cpp @@ -216,7 +216,12 @@ EX void reduceOrbPowers() { whirlwind::calcdirs(cwt.at); items[itStrongWind] = !items[itOrbAether] && whirlwind::qdirs == 1; items[itWarning] = 0; - if(items[itCrossbow]) items[itCrossbow]--; + if(items[itCrossbow]) { + if(lastmovetype == lmSkip && isWarped(cwt.at)) + addMessage(XLAT("The warped space distracts you from reloading while staying in place!")); + else + items[itCrossbow]--; + } } eWall orig_wall;