Added postfix to current slot and location narration

master
shoaib11120 2021-12-19 18:35:26 +05:30
parent 069769b2d6
commit d4f73d5dd8
1 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ namespace stardew_access.Game
return;
previousSlotItem = currentSlotItem;
ScreenReader.say(currentSlotItem.Name, true);
ScreenReader.say($"{currentSlotItem.Name} Selected", true);
}
// Narrates current location's name
@ -39,7 +39,7 @@ namespace stardew_access.Game
return;
previousLocation = currentLocation;
ScreenReader.say(currentLocation.Name,true);
ScreenReader.say($"{currentLocation.Name} Entered",true);
}
}
}