diff --git a/src/challenges/chess-simp/2024-05.ts b/src/challenges/chess-simp/2024-05.ts index b5027a7..8057a3f 100644 --- a/src/challenges/chess-simp/2024-05.ts +++ b/src/challenges/chess-simp/2024-05.ts @@ -12,7 +12,7 @@ export class Simp_2024_05_01 implements Challenge { link: 'https://www.youtube.com/watch?v=ZM_8zFV9th8', challenge: "Chess, but it's a platformer. Your pieces (not pawns) must always land directly above another piece/pawn.", - records: new Map([]), + records: new Map([[users.SenorFlamingo.name, { when: new Date('2024-05-06'), depth: 1 }]]), } isMoveAllowed: Challenge['isMoveAllowed'] = ({ board, move }) => { diff --git a/src/challenges/users.ts b/src/challenges/users.ts index 0b262d0..e34b4b4 100644 --- a/src/challenges/users.ts +++ b/src/challenges/users.ts @@ -35,4 +35,8 @@ export const users = { name: 'Arnout', notes: 'Arnout#2313, Ches Discord', }, + SenorFlamingo: { + name: 'SenorFlamingo', + notes: 'senorflamingo, Simp Discord', + }, }