fix revive system, fix iteminfo, add revives to README

This commit is contained in:
2025-04-13 17:58:30 +02:00
parent c2fac183cd
commit a5d3cad00b
4 changed files with 6 additions and 4 deletions

View File

@@ -5,5 +5,5 @@ export default createBotCommand('iteminfo', async (params, { say }) => {
if (params[0] === undefined) { await say('No item specified!'); return }
const selection = items.find(item => item.aliases.includes(params[0].toLowerCase()))
if (!selection) { await say('Item not found'); return }
await say(selection[1].description)
await say(selection.description)
}, { aliases: ['item'] })