forked from Ottermandias/GatherBuddy
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #179 from oorzkws/idleteleportfix
Fix idle teleporting from inside estate
- Loading branch information
Showing
2 changed files
with
22 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using SeHousingManager = FFXIVClientStructs.FFXIV.Client.Game.HousingManager; | ||
|
||
namespace GatherBuddy.SeFunctions; | ||
|
||
public static unsafe class HousingManager | ||
{ | ||
public static bool IsInHousing() | ||
{ | ||
var housingManager = SeHousingManager.Instance(); | ||
if (housingManager == null) | ||
return false; | ||
|
||
ref var housingTerritory = ref housingManager->CurrentTerritory; | ||
if (housingTerritory == null) | ||
return false; | ||
|
||
return true; | ||
} | ||
} |