mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-19 22:37:43 +01:00
Fix warnings
This commit is contained in:
parent
fc562778da
commit
c0c61c66be
4 changed files with 11 additions and 11 deletions
|
|
@ -22,6 +22,9 @@ public unsafe class SMNGauge : JobGaugeBase<SummonerGauge>
|
|||
/// </summary>
|
||||
public ushort SummonTimerRemaining => this.Struct->SummonTimer;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the time remaining for the current attunement.
|
||||
/// </summary>
|
||||
[Obsolete("Typo fixed. Use AttunementTimerRemaining instead.", true)]
|
||||
public ushort AttunmentTimerRemaining => this.AttunementTimerRemaining;
|
||||
|
||||
|
|
@ -102,19 +105,19 @@ public unsafe class SMNGauge : JobGaugeBase<SummonerGauge>
|
|||
/// Gets a value indicating whether if Ifrit is currently attuned.
|
||||
/// </summary>
|
||||
/// <returns><c>true</c> or <c>false</c>.</returns>
|
||||
public bool IsIfritAttuned => this.AttunementType == SummonAttunement.IFRIT;
|
||||
public bool IsIfritAttuned => this.AttunementType == SummonAttunement.Ifrit;
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether if Titan is currently attuned.
|
||||
/// </summary>
|
||||
/// <returns><c>true</c> or <c>false</c>.</returns>
|
||||
public bool IsTitanAttuned => this.AttunementType == SummonAttunement.TITAN;
|
||||
public bool IsTitanAttuned => this.AttunementType == SummonAttunement.Titan;
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether if Garuda is currently attuned.
|
||||
/// </summary>
|
||||
/// <returns><c>true</c> or <c>false</c>.</returns>
|
||||
public bool IsGarudaAttuned => this.AttunementType == SummonAttunement.GARUDA;
|
||||
public bool IsGarudaAttuned => this.AttunementType == SummonAttunement.Garuda;
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether there are any Aetherflow stacks available.
|
||||
|
|
|
|||
|
|
@ -85,8 +85,9 @@ internal class SheetRedirectResolver : IServiceType
|
|||
{
|
||||
flags |= SheetRedirectFlags.HighQuality;
|
||||
}
|
||||
else if (kind == ItemKind.Collectible || sheetName == "ItemMP") // MP for Masterpiece?!
|
||||
else if (kind == ItemKind.Collectible || sheetName == "ItemMP")
|
||||
{
|
||||
// MP for Masterpiece?!
|
||||
flags |= SheetRedirectFlags.Collectible;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue