Skip to content

Commit

Permalink
Update player.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
dudantas committed Nov 13, 2024
1 parent 4cd9044 commit b1897a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/creatures/players/player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8017,7 +8017,7 @@ void sendStowItems(const std::shared_ptr<Item> &item, const std::shared_ptr<Item
}
}

void Player::stowItem(const std::shared_ptr<Item> &item uint32_t count, bool allItems) {
void Player::stowItem(const std::shared_ptr<Item> &item, uint32_t count, bool allItems) {
if (!item || (!item->isItemStorable() && item->getID() != ITEM_GOLD_POUCH)) {
sendCancelMessage("This item cannot be stowed here.");
return;
Expand Down

0 comments on commit b1897a7

Please sign in to comment.