From 60dd5bd2bc5e5b9ab1afa1a33e875084570f8af0 Mon Sep 17 00:00:00 2001 From: Karin Date: Thu, 23 Nov 2023 16:05:01 -0300 Subject: [PATCH] fix: moving loot pouch to stash (#1885) --- src/game/game.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/game/game.cpp b/src/game/game.cpp index 5aa0e6eecca..8b2489c3df6 100644 --- a/src/game/game.cpp +++ b/src/game/game.cpp @@ -1625,6 +1625,10 @@ ReturnValue Game::checkMoveItemToCylinder(std::shared_ptr player, std::s isValidMoveItem = true; } + if (item->getID() == ITEM_GOLD_POUCH) { + isValidMoveItem = true; + } + if (!isValidMoveItem) { return RETURNVALUE_NOTPOSSIBLE; }