Skip to content

Commit

Permalink
Fix Warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Minmoose committed Apr 6, 2024
1 parent 0367980 commit bc7d541
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Brio/Game/Actor/Extensions/CharacterExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,6 @@ public static unsafe IReadOnlyList<CharacterBaseInfo> GetCharacterBases(this Cha
public static unsafe BrioCharaMakeType? GetCharaMakeType(this Character go)
{
var drawData = go.Native()->DrawData;
return GameDataProvider.Instance.CharaMakeTypes.Select(x => x.Value).FirstOrDefault(x => x.Race.Row == (uint)drawData.CustomizeData.Race && x.Tribe.Row == (uint)drawData.CustomizeData.Clan && x.Gender == (Genders)drawData.CustomizeData.Sex);
return GameDataProvider.Instance.CharaMakeTypes.Select(x => x.Value).FirstOrDefault(x => x.Race.Row == (uint)drawData.CustomizeData.Race && x.Tribe.Row == (uint)drawData.CustomizeData.Tribe && x.Gender == (Genders)drawData.CustomizeData.Sex);
}
}
}
1 change: 0 additions & 1 deletion Brio/Game/Posing/PoseImporter.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using Brio.Core;
using Brio.Files;
using Brio.Game.Posing.Skeletons;
//using FFXIVClientStructs.FFXIV.Client.Graphics;

namespace Brio.Game.Posing;

Expand Down

0 comments on commit bc7d541

Please sign in to comment.