mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Disable game symbol download for the time being
This commit is contained in:
parent
a72f407357
commit
d1fad70e8f
2 changed files with 3 additions and 2 deletions
|
|
@ -140,7 +140,7 @@ public enum DalamudAsset
|
|||
/// <summary>
|
||||
/// <see cref="DalamudAssetPurpose.Font"/>: Game symbol fonts being used as webfonts at Lodestone.
|
||||
/// </summary>
|
||||
[DalamudAsset(DalamudAssetPurpose.Font, required: true)]
|
||||
[DalamudAssetOnlineSource("https://img.finalfantasyxiv.com/lds/pc/global/fonts/FFXIV_Lodestone_SSF.ttf")]
|
||||
[DalamudAsset(DalamudAssetPurpose.Font, required: false)]
|
||||
// [DalamudAssetOnlineSource("https://img.finalfantasyxiv.com/lds/pc/global/fonts/FFXIV_Lodestone_SSF.ttf")]
|
||||
LodestoneGameSymbol = 2004,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -96,6 +96,7 @@ internal sealed class DalamudAssetManager : IServiceType, IDisposable, IDalamudA
|
|||
return Task.WhenAll(
|
||||
Enum.GetValues<DalamudAsset>()
|
||||
.Where(x => x is not DalamudAsset.Empty4X4)
|
||||
.Where(x => x.GetAttribute<DalamudAssetAttribute>()?.Required is true)
|
||||
.Select(this.CreateStreamAsync)
|
||||
.Select(x => x.ToContentDisposedTask()));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue