mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-14 20:54:16 +01:00
deps: bump clientstructs (#2243)
- fix fate HasExpBonus - remove deprecation from concrete class - kept on interface
This commit is contained in:
parent
708f3d0ab2
commit
e52ac55d91
2 changed files with 4 additions and 3 deletions
|
|
@ -3,6 +3,7 @@ using System.Numerics;
|
||||||
using Dalamud.Data;
|
using Dalamud.Data;
|
||||||
using Dalamud.Game.Text.SeStringHandling;
|
using Dalamud.Game.Text.SeStringHandling;
|
||||||
using Dalamud.Memory;
|
using Dalamud.Memory;
|
||||||
|
using Dalamud.Utility;
|
||||||
|
|
||||||
using Lumina.Excel;
|
using Lumina.Excel;
|
||||||
|
|
||||||
|
|
@ -222,8 +223,8 @@ internal unsafe partial class Fate : IFate
|
||||||
public byte Progress => this.Struct->Progress;
|
public byte Progress => this.Struct->Progress;
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
[Obsolete($"Use {nameof(HasBonus)} instead")]
|
[Api13ToDo("Remove")]
|
||||||
public bool HasExpBonus => this.Struct->IsExpBonus;
|
public bool HasExpBonus => this.HasBonus;
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public bool HasBonus => this.Struct->IsBonus;
|
public bool HasBonus => this.Struct->IsBonus;
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 9e7f03ed6d3d5cb9e6952f00c4779ac64427bc81
|
Subproject commit f6e51772078bc9ea5768e675c70026659a4525d3
|
||||||
Loading…
Add table
Add a link
Reference in a new issue