Skip to content

Commit

Permalink
final touches
Browse files Browse the repository at this point in the history
  • Loading branch information
GoogleFeud committed Aug 10, 2019
1 parent fc1fd71 commit 38e92d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Codenames/Game.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class Game {
if (counter == turns.length - 1) counter = 0;
else counter++;
}
else if ((Date.now() - this.lastAction) >= 60000) {
else if ((Date.now() - this.lastAction) >= 1200000) {
this.stop();
this.channel.send("** 📤 | Game disbanded. **")
}
Expand Down

0 comments on commit 38e92d3

Please sign in to comment.