mixer overlay wip

This commit is contained in:
minjaesong
2023-11-18 18:31:25 +09:00
parent dc2f58d754
commit 5c5f526d16
6 changed files with 145 additions and 8 deletions

View File

@@ -37,6 +37,7 @@ internal object Inventory : ConsoleCommand {
"remove" -> if (args.size > 3) removeItem(actor, args[2], args[3].toLong()) else removeItem(actor, args[2])
"equip" -> equipItem(actor, args[2])
"unequip"-> unequipItem(actor, args[2])
"clear" -> actor.inventory.clear()
else -> printUsage()
}
}