From d4f73d5dd88e255a5f5d13594ac14bb4f2223f7b Mon Sep 17 00:00:00 2001 From: shoaib11120 Date: Sun, 19 Dec 2021 18:35:26 +0530 Subject: [PATCH] Added postfix to current slot and location narration --- stardew-access/Game/SlotAndLocation.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stardew-access/Game/SlotAndLocation.cs b/stardew-access/Game/SlotAndLocation.cs index 0133175..94ec5ee 100644 --- a/stardew-access/Game/SlotAndLocation.cs +++ b/stardew-access/Game/SlotAndLocation.cs @@ -24,8 +24,8 @@ namespace stardew_access.Game return; previousSlotItem = currentSlotItem; - ScreenReader.say(currentSlotItem.Name, true); - } + ScreenReader.say($"{currentSlotItem.Name} Selected", true); + } // Narrates current location's name public static void narrateCurrentLocation() @@ -39,7 +39,7 @@ namespace stardew_access.Game return; previousLocation = currentLocation; - ScreenReader.say(currentLocation.Name,true); + ScreenReader.say($"{currentLocation.Name} Entered",true); } } }