Added postfix to current slot and location narration
This commit is contained in:
@@ -24,8 +24,8 @@ namespace stardew_access.Game
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
previousSlotItem = currentSlotItem;
|
previousSlotItem = currentSlotItem;
|
||||||
ScreenReader.say(currentSlotItem.Name, true);
|
ScreenReader.say($"{currentSlotItem.Name} Selected", true);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Narrates current location's name
|
// Narrates current location's name
|
||||||
public static void narrateCurrentLocation()
|
public static void narrateCurrentLocation()
|
||||||
@@ -39,7 +39,7 @@ namespace stardew_access.Game
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
previousLocation = currentLocation;
|
previousLocation = currentLocation;
|
||||||
ScreenReader.say(currentLocation.Name,true);
|
ScreenReader.say($"{currentLocation.Name} Entered",true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user