Skip to content

Commit

Permalink
Add Pokédex ID to info response (#770)
Browse files Browse the repository at this point in the history
  • Loading branch information
RagingRectangle authored Mar 19, 2023
1 parent bd3476f commit 9224242
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib/poracleMessage/commands/info.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,8 @@ exports.run = async (client, msg, args, options) => {
const strengths = {}
const weaknesses = {}

message = message.concat(`\n**Pokédex ID:** ${mon.id}\n`);

for (const type of types) {
strengths[type] = []
typeInfo[type].strengths.forEach((x) => {
Expand Down

0 comments on commit 9224242

Please sign in to comment.