Skip to content

Commit

Permalink
9s Increase skip multiplyer
Browse files Browse the repository at this point in the history
  • Loading branch information
Jumbub committed Mar 28, 2022
1 parent 1f72fc9 commit ce1c2e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logic/board.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const DONT_SKIP = 0 as const;
export type Skip = typeof SKIP | typeof DONT_SKIP;
export type Skips = Uint8Array;

export const SKIP_MULTIPLYER = 2;
export const SKIP_MULTIPLYER = 8;

export const newBoard = (viewWidth: number, viewHeight: number) => {
if (!littleEndian()) {
Expand Down

0 comments on commit ce1c2e5

Please sign in to comment.