We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug
puzzleIsInFuture check is comparing:
const puzzleUnlockTimeUTC = Date.UTC(year, 11, day, 19);
19:00 UTC is 2 PM EST...
The comparison should check:
const puzzleUnlockTimeUTC = Date.UTC(year, 11, day, 5);
To Reproduce Steps to reproduce the behavior:
error: You cannot attempt this puzzle because it is not unlocked yet, check back on December 1 at midnight EST
Expected behavior The puzzle will be unlocked exactly at midnight EST.
The text was updated successfully, but these errors were encountered:
beakerandjake
Successfully merging a pull request may close this issue.
Describe the bug
puzzleIsInFuture check is comparing:
19:00 UTC is 2 PM EST...
The comparison should check:
To Reproduce
Steps to reproduce the behavior:
error: You cannot attempt this puzzle because it is not unlocked yet, check back on December 1 at midnight EST
Expected behavior
The puzzle will be unlocked exactly at midnight EST.
The text was updated successfully, but these errors were encountered: