Skip to content

Commit e70df2c

Browse files
committed
fix: 1cecaac RealJacketPath计算的顺序写反了,导致重构不等价了
1 parent e049efc commit e70df2c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

MaiChartManager/Models/MusicXmlWithABJacket.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class MusicXmlWithABJacket(string filePath, string gamePath, string asset
1111

1212
// 在 mod 里文件的 jacket 是优先的
1313
public new bool HasJacket => JacketPath is not null || AssetBundleJacket is not null || PseudoAssetBundleJacket is not null;
14-
public string RealJacketPath => JacketPath ?? AssetBundleJacket ?? PseudoAssetBundleJacket;
14+
public string RealJacketPath => JacketPath ?? PseudoAssetBundleJacket ?? AssetBundleJacket;
1515

1616
public new static MusicXmlWithABJacket CreateNew(int id, string gamePath, string assetDir)
1717
{

0 commit comments

Comments
 (0)