Compare commits
No commits in common. "02250ed307d96c44afc4e8c91759494aba027e8e" and "cdb262a26ad72d080b922eee8ad3e0b2ac8e7db1" have entirely different histories.
02250ed307
...
cdb262a26a
|
@ -1,8 +1,13 @@
|
||||||
using Microsoft.Xna.Framework;
|
using Microsoft.Xna.Framework;
|
||||||
|
using Netcode;
|
||||||
using StardewValley;
|
using StardewValley;
|
||||||
using StardewValley.Buildings;
|
using StardewValley.Buildings;
|
||||||
using StardewValley.Locations;
|
using StardewValley.Locations;
|
||||||
|
using StardewValley.Objects;
|
||||||
|
using StardewValley.TerrainFeatures;
|
||||||
using static stardew_access.Features.Utils;
|
using static stardew_access.Features.Utils;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
namespace stardew_access.Features
|
namespace stardew_access.Features
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics;
|
||||||
using Microsoft.Xna.Framework;
|
using Microsoft.Xna.Framework;
|
||||||
using StardewValley;
|
using StardewValley;
|
||||||
using StardewValley.Objects;
|
using StardewValley.Objects;
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
|
using System.IO;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Collections.Generic;
|
||||||
using StardewValley;
|
using StardewValley;
|
||||||
using static stardew_access.Features.Utils;
|
using static stardew_access.Features.Utils;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
using Microsoft.Xna.Framework;
|
using Microsoft.Xna.Framework;
|
||||||
|
using Netcode;
|
||||||
using StardewValley;
|
using StardewValley;
|
||||||
|
using StardewValley.Buildings;
|
||||||
using StardewValley.Locations;
|
using StardewValley.Locations;
|
||||||
using StardewValley.Objects;
|
using StardewValley.Objects;
|
||||||
using StardewValley.TerrainFeatures;
|
using StardewValley.TerrainFeatures;
|
||||||
|
@ -114,26 +116,6 @@ namespace stardew_access.Features
|
||||||
return (warp ?? door, CATEGORY.Doors);
|
return (warp ?? door, CATEGORY.Doors);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isMineDownLadderAtTile(currentLocation, x, y))
|
|
||||||
{
|
|
||||||
return ("Ladder", CATEGORY.Doors);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isShaftAtTile(currentLocation, x, y))
|
|
||||||
{
|
|
||||||
return ("Shaft", CATEGORY.Doors);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isMineUpLadderAtTile(currentLocation, x, y))
|
|
||||||
{
|
|
||||||
return ("Up Ladder", CATEGORY.Doors);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isElevatorAtTile(currentLocation, x, y))
|
|
||||||
{
|
|
||||||
return ("Elevator", CATEGORY.Doors);
|
|
||||||
}
|
|
||||||
|
|
||||||
string? junimoBundle = GetJunimoBundleAt(currentLocation, x, y);
|
string? junimoBundle = GetJunimoBundleAt(currentLocation, x, y);
|
||||||
if (junimoBundle != null)
|
if (junimoBundle != null)
|
||||||
{
|
{
|
||||||
|
|
|
@ -6,6 +6,8 @@ using HarmonyLib;
|
||||||
using stardew_access.Patches;
|
using stardew_access.Patches;
|
||||||
using stardew_access.ScreenReader;
|
using stardew_access.ScreenReader;
|
||||||
using Microsoft.Xna.Framework;
|
using Microsoft.Xna.Framework;
|
||||||
|
using StardewValley.Menus;
|
||||||
|
using Microsoft.Xna.Framework.Input;
|
||||||
|
|
||||||
namespace stardew_access
|
namespace stardew_access
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue