From 504624cd7cac4cb485a9e280581e4ed187dcc61a Mon Sep 17 00:00:00 2001
From: shoaib11120 <shoaib.khan20@outlook.com>
Date: Sat, 25 Dec 2021 14:36:36 +0530
Subject: [PATCH] Added enter as alternate to [ and ]

---
 stardew-access/ModEntry.cs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/stardew-access/ModEntry.cs b/stardew-access/ModEntry.cs
index c7e48b0..155c7f1 100644
--- a/stardew-access/ModEntry.cs
+++ b/stardew-access/ModEntry.cs
@@ -39,7 +39,9 @@ namespace stardew_access
             {
                 ahk = AutoHotkeyEngine.Instance;
                 ahk.ExecRaw("[::\nSend {LButton}");
+                ahk.ExecRaw("^Enter::\nSend {LButton}");
                 ahk.ExecRaw("]::\nSend {RButton}");
+                ahk.ExecRaw("+Enter::\nSend {RButton}");
             }
             catch (Exception e)
             {