1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-21 02:23:06 +08:00

s/AddBeatmap/ImportBeatmap/g

This commit is contained in:
Drew DeVault 2016-10-18 15:42:07 -04:00
parent 105bba6178
commit 768dd38fa0
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ namespace osu.Game.Database
}
}
public void AddBeatmap(string path)
public void ImportBeatmap(string path)
{
string hash = null;
var reader = ArchiveReader.GetReader(storage, path);

View File

@ -74,7 +74,7 @@ namespace osu.Game
{
try
{
Beatmaps.AddBeatmap(message.Path);
Beatmaps.ImportBeatmap(message.Path);
// TODO: Switch to beatmap list and select the new song
}
catch (Exception ex)