Moved money to top in hover text

master
shoaib11120 2021-12-20 19:42:23 +05:30
parent 03a7afc6b3
commit af4b74f382
1 changed files with 5 additions and 5 deletions

View File

@ -98,6 +98,11 @@ namespace stardew_access.Patches
toSpeak.Append(text); toSpeak.Append(text);
#endregion #endregion
#region Add money
if (moneyAmountToDisplayAtBottom != -1)
toSpeak.Append($"\nValue: {moneyAmountToDisplayAtBottom}g\n");
#endregion
#region Add crafting ingredients #region Add crafting ingredients
if (craftingIngredients != null) if (craftingIngredients != null)
{ {
@ -149,11 +154,6 @@ namespace stardew_access.Patches
} }
#endregion #endregion
#region Add money
if (moneyAmountToDisplayAtBottom != -1)
toSpeak.Append($"\nValue: {moneyAmountToDisplayAtBottom}g\n");
#endregion
#region Narrate toSpeak #region Narrate toSpeak
ScreenReader.sayWithChecker(toSpeak.ToString(), true); ScreenReader.sayWithChecker(toSpeak.ToString(), true);
#endregion #endregion