This commit is contained in:
Dragon Fire
2024-04-07 01:13:34 -04:00
parent ffd098c7b9
commit f4b05b3b48
+1 -1
View File
@@ -49,7 +49,7 @@ module.exports = class LorcanaCommand extends Command {
.setTitle(card.Name)
.addField(' Color', card.Color, true)
.addField(' Inkable?', card.Inkable ? 'Yes' : 'No', true)
.addField(' Lore', card.Lore || 0, true);
.addField(' Lore', card.Lore ? card.Lore.toString() : '0', true);
return msg.embed(embed);
}