Removed unnecessary comment
parent
b8f77384b2
commit
0a244649ee
|
@ -127,44 +127,9 @@ namespace stardew_access.Patches
|
|||
if (Game1.player.rightRing.Value != null)
|
||||
toSpeak = $"{toSpeak}: {Game1.player.rightRing.Value.DisplayName}";
|
||||
}
|
||||
else
|
||||
{
|
||||
if (InventoryUtils.narrateHoveredSlot(__instance.inventory, __instance.inventory.inventory, __instance.inventory.actualInventory, x, y))
|
||||
return;
|
||||
|
||||
// for (int i = 0; i < __instance.inventory.inventory.Count; i++)
|
||||
// {
|
||||
// if (!__instance.inventory.inventory[i].containsPoint(x, y))
|
||||
// continue;
|
||||
//
|
||||
// if (__instance.inventory.actualInventory[i] == null)
|
||||
// toSpeak = "Empty slot";
|
||||
// else
|
||||
// {
|
||||
// toSpeak = $"{__instance.inventory.actualInventory[i].Stack} {__instance.inventory.actualInventory[i].DisplayName}";
|
||||
//
|
||||
// if (!__instance.inventory.highlightMethod(__instance.inventory.actualInventory[i]))
|
||||
// {
|
||||
// toSpeak = $"{toSpeak} not usable here";
|
||||
// }
|
||||
//
|
||||
// if (prevSlotIndex != i)
|
||||
// {
|
||||
// prevSlotIndex = i;
|
||||
// Game1.playSound("invalid-selection");
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// if (forgeMenuQuery != $"{toSpeak}:{i}")
|
||||
// {
|
||||
// forgeMenuQuery = $"{toSpeak}:{i}";
|
||||
// MainClass.ScreenReader.Say(toSpeak, true);
|
||||
// }
|
||||
//
|
||||
// return;
|
||||
// }
|
||||
}
|
||||
|
||||
if (InventoryUtils.narrateHoveredSlot(__instance.inventory, __instance.inventory.inventory, __instance.inventory.actualInventory, x, y))
|
||||
return;
|
||||
|
||||
if (forgeMenuQuery != toSpeak)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue