Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(dice): New dice features & changes #1455

Merged
merged 20 commits into from
Aug 24, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Reduce dice clear timer to 5 seconds
  • Loading branch information
Kruptein committed Aug 24, 2024

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 915ad37d196c046e934a108b3466f41d39b469f7
2 changes: 1 addition & 1 deletion client/src/game/tools/variants/dice.ts
Original file line number Diff line number Diff line change
@@ -108,7 +108,7 @@ class DiceTool extends Tool implements ITool {
console.error("Failed to retrieve diceThrower instance");
delete this.state.timeouts[results.key];
});
}, 10_000);
}, 5_000);
this.state.timeouts[results.key] = timeoutId;

return results.key;