From 57b59de9be7576918ea29e32dfbd8e41e1eae0d6 Mon Sep 17 00:00:00 2001 From: Jack Date: Fri, 25 Mar 2022 20:10:20 +0800 Subject: [PATCH] fix arrows --- src/Infiltration/utils.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Infiltration/utils.ts b/src/Infiltration/utils.ts index d338423d5..ed8f6fedc 100644 --- a/src/Infiltration/utils.ts +++ b/src/Infiltration/utils.ts @@ -5,9 +5,9 @@ export function random(min: number, max: number): number { } export const upArrowSymbol = "↑"; -export const downArrowSymbol = "↑"; -export const leftArrowSymbol = "↑"; -export const rightArrowSymbol = "↑"; +export const downArrowSymbol = "↓"; +export const leftArrowSymbol = "←"; +export const rightArrowSymbol = "→"; export function getArrow(event: KeyboardEvent): string { switch (event.key) {