| 1298 | } |
| 1299 | |
| 1300 | ItemDescriptor Player::takeItem(ItemDescriptor const& descriptor, bool consumePartial, bool exactMatch) { |
| 1301 | return m_inventory->takeItems(descriptor, consumePartial, exactMatch); |
| 1302 | } |
| 1303 | |
| 1304 | void Player::giveItem(ItemDescriptor const& descriptor) { |
| 1305 | giveItem(Root::singleton().itemDatabase()->item(descriptor)); |
no test coverage detected