We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e049efc commit e70df2cCopy full SHA for e70df2c
1 file changed
MaiChartManager/Models/MusicXmlWithABJacket.cs
@@ -11,7 +11,7 @@ public class MusicXmlWithABJacket(string filePath, string gamePath, string asset
11
12
// 在 mod 里文件的 jacket 是优先的
13
public new bool HasJacket => JacketPath is not null || AssetBundleJacket is not null || PseudoAssetBundleJacket is not null;
14
- public string RealJacketPath => JacketPath ?? AssetBundleJacket ?? PseudoAssetBundleJacket;
+ public string RealJacketPath => JacketPath ?? PseudoAssetBundleJacket ?? AssetBundleJacket;
15
16
public new static MusicXmlWithABJacket CreateNew(int id, string gamePath, string assetDir)
17
{
0 commit comments