| 1381 | } |
| 1382 | |
| 1383 | bool Player::blueprintKnown(ItemDescriptor const& descriptor) const { |
| 1384 | if (descriptor.isNull()) |
| 1385 | return false; |
| 1386 | |
| 1387 | return m_blueprints->isKnown(descriptor); |
| 1388 | } |
| 1389 | |
| 1390 | bool Player::addCollectable(String const& collectionName, String const& collectableName) { |
| 1391 | if (m_log->addCollectable(collectionName, collectableName)) { |
no test coverage detected