Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon committed Aug 22, 2024
2 parents a338eaa + 4796f55 commit acea6f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GuildWarsPartySearch.NodeJSServer/server.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,9 @@ function reassign_bot_clients(request) {
const now = new Date();
const nowHours = now.getUTCHours();
const start = 0;
const end = 7;
const end = 8;

return nowHours >= start && nowHours < end;
return !(nowHours >= start && nowHours < end);
}

const check_and_assign = (map_id, district_region) => {
Expand Down

0 comments on commit acea6f6

Please sign in to comment.