Skip to content

Commit

Permalink
🐛 Fix number command
Browse files Browse the repository at this point in the history
Co-Authored-By: Reva724 <[email protected]>
  • Loading branch information
Androz2091 and Reva724 committed Jan 30, 2021
1 parent 1a679cb commit 181771b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/Fun/number.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ class Number extends Command {
}
if (parseInt(msg.content) < number) {
message.error("fun/number:BIG", {
user: message.author.toString(),
user: msg.author.toString(),
number: parsedNumber
});
}
if (parseInt(msg.content) > number) {
message.error("fun/number:SMALL", {
user: message.author.toString(),
user: msg.author.toString(),
number: parsedNumber
});
}
Expand Down

0 comments on commit 181771b

Please sign in to comment.