| 331 | } |
| 332 | |
| 333 | String ClientCommandProcessor::naked() { |
| 334 | auto playerInventory = m_universeClient->mainPlayer()->inventory(); |
| 335 | for (auto slot : EquipmentSlotNames.leftValues()) |
| 336 | playerInventory->addItems(playerInventory->addToBags(playerInventory->takeSlot(slot))); |
| 337 | return "You are now naked"; |
| 338 | } |
| 339 | |
| 340 | String ClientCommandProcessor::resetAchievements() { |
| 341 | if (!adminCommandAllowed()) |
nothing calls this directly
no test coverage detected