Moved money to top in hover text
parent
03a7afc6b3
commit
af4b74f382
|
@ -98,6 +98,11 @@ namespace stardew_access.Patches
|
|||
toSpeak.Append(text);
|
||||
#endregion
|
||||
|
||||
#region Add money
|
||||
if (moneyAmountToDisplayAtBottom != -1)
|
||||
toSpeak.Append($"\nValue: {moneyAmountToDisplayAtBottom}g\n");
|
||||
#endregion
|
||||
|
||||
#region Add crafting ingredients
|
||||
if (craftingIngredients != null)
|
||||
{
|
||||
|
@ -149,11 +154,6 @@ namespace stardew_access.Patches
|
|||
}
|
||||
#endregion
|
||||
|
||||
#region Add money
|
||||
if (moneyAmountToDisplayAtBottom != -1)
|
||||
toSpeak.Append($"\nValue: {moneyAmountToDisplayAtBottom}g\n");
|
||||
#endregion
|
||||
|
||||
#region Narrate toSpeak
|
||||
ScreenReader.sayWithChecker(toSpeak.ToString(), true);
|
||||
#endregion
|
||||
|
|
Loading…
Reference in New Issue