From 659966df6b4e93fef5caf4a1556bfcf7dcd29dd1 Mon Sep 17 00:00:00 2001 From: Brian Hicks Date: Mon, 12 Oct 2020 10:47:40 -0500 Subject: [PATCH] use up arrow for ties --- src/Main.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main.elm b/src/Main.elm index 86ce2f5..3769ed0 100644 --- a/src/Main.elm +++ b/src/Main.elm @@ -162,7 +162,7 @@ subscriptions model = Just Keyboard.ArrowRight -> MatchFinished (League.Win { won = right, lost = left }) - Just Keyboard.ArrowDown -> + Just Keyboard.ArrowUp -> MatchFinished (League.Draw { playerA = left, playerB = right }) _ ->