1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:07:23 +08:00

change .osz2 to .olz (osu lazer zip)

This commit is contained in:
OliBomby 2023-07-12 15:04:06 +02:00
parent 465cc759f0
commit 3052c317e1
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ namespace osu.Game.Beatmaps
/// </summary>
public class BeatmapImporter : RealmArchiveModelImporter<BeatmapSetInfo>
{
public override IEnumerable<string> HandledExtensions => new[] { ".osz", ".osz2" };
public override IEnumerable<string> HandledExtensions => new[] { ".osz", ".olz" };
protected override string[] HashableFileTypes => new[] { ".osu" };

View File

@ -17,6 +17,6 @@ namespace osu.Game.Database
{
}
protected override string FileExtension => @".osz2";
protected override string FileExtension => @".olz";
}
}