Skip to content

Commit 64eee8d

Browse files
authored
Update index.js
1 parent 9902238 commit 64eee8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ client.on("messageCreate", async message => {
134134
message.reply(`**You moved north (+1). You are now in zone: ${user.score}**`);
135135
setTimeout(() => {
136136
limits.delete(message.author.id + "north");
137-
}, 30000)
137+
}, 5000)
138138
} else message.reply("**Ratelimit, you can north once every 30 seconds**")
139139
break;
140140
case "south":
@@ -156,7 +156,7 @@ client.on("messageCreate", async message => {
156156
}
157157
setTimeout(() => {
158158
limits.delete(message.author.id + "south");
159-
}, 30000)
159+
}, 5000)
160160
} else message.reply("**Ratelimit, you can south once every 30 seconds**")
161161
break;
162162
}

0 commit comments

Comments
 (0)