mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Fix direction of furniture redrawing.
This commit is contained in:
parent
e2313ba925
commit
5b1c0cf0e3
1 changed files with 2 additions and 2 deletions
|
|
@ -424,8 +424,8 @@ public sealed unsafe partial class RedrawService : IDisposable
|
|||
if (housingManager == null)
|
||||
return;
|
||||
|
||||
var currentTerritory = (OutdoorTerritory*)housingManager->CurrentTerritory;
|
||||
if (currentTerritory == null || currentTerritory->GetTerritoryType() is not HousingTerritoryType.Outdoor)
|
||||
var currentTerritory = (IndoorTerritory*)housingManager->CurrentTerritory;
|
||||
if (currentTerritory == null || currentTerritory->GetTerritoryType() is not HousingTerritoryType.Indoor)
|
||||
return;
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue