Browse Source

Accidentally mixed up Java and JavaScript ugh

master
Abheek Dhawan 4 years ago
parent
commit
a370ffe229
  1. 2
      index.js

2
index.js

@ -19,7 +19,7 @@ client.on("message", message => {
});
async function bulkDelete(message) {
const amount = Integer.parseInt(message.content.substring(12));
const amount = parseInt(message.content.substring(12));
if (!amount) {
message.reply('please add the number of messages to be deleted!');

Loading…
Cancel
Save