Skip to content

Commit

Permalink
fix: moving loot pouch to stash (opentibiabr#1885)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlospess0a authored Nov 23, 2023
1 parent 2bb39d3 commit 60dd5bd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/game/game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1625,6 +1625,10 @@ ReturnValue Game::checkMoveItemToCylinder(std::shared_ptr<Player> player, std::s
isValidMoveItem = true;
}

if (item->getID() == ITEM_GOLD_POUCH) {
isValidMoveItem = true;
}

if (!isValidMoveItem) {
return RETURNVALUE_NOTPOSSIBLE;
}
Expand Down

0 comments on commit 60dd5bd

Please sign in to comment.