Fixed rate limiting

This commit is contained in:
Amish Shah
2015-12-16 18:46:03 +00:00
parent da990f544a
commit 470fbbb6d6
3 changed files with 9 additions and 1 deletions

View File

@@ -41,7 +41,8 @@ client.on("message", msg => {
}
if (msg.content === "$$$") {
client.reply(msg, "hi!");
for(var x = 0; x < 60; x++)
client.reply(msg, x);
}
});