mirror of https://github.com/ppy/osu
Remove VideoFile from BeatmapMetadata
Leaving in database because it's a pain to drop columns.
This commit is contained in:
parent
6d81da5419
commit
f2e0fba164
|
@ -52,7 +52,6 @@ public string AuthorString
|
||||||
public int PreviewTime { get; set; }
|
public int PreviewTime { get; set; }
|
||||||
public string AudioFile { get; set; }
|
public string AudioFile { get; set; }
|
||||||
public string BackgroundFile { get; set; }
|
public string BackgroundFile { get; set; }
|
||||||
public string VideoFile { get; set; }
|
|
||||||
|
|
||||||
public override string ToString() => $"{Artist} - {Title} ({Author})";
|
public override string ToString() => $"{Artist} - {Title} ({Author})";
|
||||||
|
|
||||||
|
@ -82,8 +81,7 @@ public bool Equals(BeatmapMetadata other)
|
||||||
&& Tags == other.Tags
|
&& Tags == other.Tags
|
||||||
&& PreviewTime == other.PreviewTime
|
&& PreviewTime == other.PreviewTime
|
||||||
&& AudioFile == other.AudioFile
|
&& AudioFile == other.AudioFile
|
||||||
&& BackgroundFile == other.BackgroundFile
|
&& BackgroundFile == other.BackgroundFile;
|
||||||
&& VideoFile == other.VideoFile;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue