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

Restore potentially breaking change.

This commit is contained in:
Dean Herbert 2017-02-28 13:56:30 +09:00
parent e60cead483
commit 654859a2a1
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49

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)
{