1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-24 01:14:51 +08:00

Restore potentially breaking change.

This commit is contained in:
Dean Herbert
2017-02-28 13:56:30 +09:00
Unverified
parent e60cead483
commit 654859a2a1
+3 -1
View File
@@ -25,12 +25,14 @@ namespace osu.Game.Database
public event Action<BeatmapSetInfo> BeatmapSetAdded;
public event Action<BeatmapSetInfo> BeatmapSetRemoved;
private BeatmapImporter ipc;
public BeatmapDatabase(Storage storage, GameHost importHost = null)
{
this.storage = storage;
if (importHost != null)
new BeatmapImporter(importHost, this);
ipc = new BeatmapImporter(importHost, this);
if (connection == null)
{