Skip to content

Commit

Permalink
chore(desert-bus): update for agdq2025
Browse files Browse the repository at this point in the history
  • Loading branch information
VodBox committed Nov 25, 2024
1 parent 6cab66e commit 597b598
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/channels/desert-bus/daytime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ const timezone = nodecg.Replicant<string>('timezone', {
*/

const Times: [number, 'night' | 'dawn' | 'day' | 'dusk'][] = [
[(17 * 60 + 46) * 60, 'night'], // 5:46pm
[(17 * 60 + 16) * 60, 'dusk'], // 5:16pm
[(7 * 60 + 41) * 60, 'day'], // 7:41am
[(7 * 60 + 11) * 60, 'dawn'], // 7:11am
[(17 * 60 + 38) * 60, 'night'], // 5:38pm
[(17 * 60 + 8) * 60, 'dusk'], // 5:08pm
[(7 * 60 + 43) * 60, 'day'], // 7:43am
[(7 * 60 + 12) * 60, 'dawn'], // 7:12am
[0, 'night'], // Midnight
];

Expand All @@ -22,7 +22,7 @@ const Times: [number, 'night' | 'dawn' | 'day' | 'dusk'][] = [
* i.e. The Checkpoint.
* Change time to reflect event schedule before event.
*/
const OmegaShift = [2024, 7, 6, 4, 26, 0] as const;
const OmegaShift = [2025, 1, 11, 16, 50, 0] as const;

export function dayTime() {
const datetime = DateTime.local({ zone: timezone.value });
Expand Down
2 changes: 1 addition & 1 deletion src/channels/desert-bus/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import {
import { useObjects } from './useObjects';
import { Palettes } from './palettes';

registerChannel('Desert Bus', 17, DesertBus, {
registerChannel('Desert Bus', 18, DesertBus, {
handle: 'VodBox',
position: 'bottomRight',
site: 'SupportClass',
Expand Down

0 comments on commit 597b598

Please sign in to comment.