diff --git a/src/includes/Aoc2212.tsx b/src/includes/Aoc2212.tsx index e51caf9..2776fe0 100644 --- a/src/includes/Aoc2212.tsx +++ b/src/includes/Aoc2212.tsx @@ -8,7 +8,7 @@ const choice = suffixes[Math.floor(Math.random() * suffixes.length)] const URL:string = "https://raw.githubusercontent.com/nuoxoxo/in/main/aoc/2212." + choice const symbolArr = ["○", '✲', '✳', '✵', '✶', '✻', '✼'] -const symbol = symbolArr[Math.floor(Math.random() * symbolArr.length)] +const symbol = (choice == 'in') ? symbolArr[Math.floor(Math.random() * symbolArr.length)] : '-' const denseSymbol = 'x'//symbolArr[Math.floor(Math.random() * symbolArr.length)] const density:number = 170