Skip to content

Commit

Permalink
Disable game symbol download for the time being
Browse files Browse the repository at this point in the history
  • Loading branch information
Soreepeong authored and goaaats committed Nov 28, 2023
1 parent a72f407 commit d1fad70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dalamud/DalamudAsset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
1 change: 1 addition & 0 deletions Dalamud/Storage/Assets/DalamudAssetManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ public Task WaitForAllRequiredAssets()
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()));
}
Expand Down

0 comments on commit d1fad70

Please sign in to comment.