We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9902238 commit 64eee8dCopy full SHA for 64eee8d
index.js
@@ -134,7 +134,7 @@ client.on("messageCreate", async message => {
134
message.reply(`**You moved north (+1). You are now in zone: ${user.score}**`);
135
setTimeout(() => {
136
limits.delete(message.author.id + "north");
137
- }, 30000)
+ }, 5000)
138
} else message.reply("**Ratelimit, you can north once every 30 seconds**")
139
break;
140
case "south":
@@ -156,7 +156,7 @@ client.on("messageCreate", async message => {
156
}
157
158
limits.delete(message.author.id + "south");
159
160
} else message.reply("**Ratelimit, you can south once every 30 seconds**")
161
162
0 commit comments