mirror of
https://github.com/ppy/osu.git
synced 2026-06-06 15:14:37 +08:00
Fix incorrect conditional for checking whether import (would fail for default skin)
This commit is contained in:
@@ -166,7 +166,7 @@ namespace osu.Game.Skinning
|
||||
string skinIniSourcedCreator = instance.Configuration.SkinInfo.Creator;
|
||||
string archiveName = item.Name.Replace(".osk", "", StringComparison.OrdinalIgnoreCase);
|
||||
|
||||
bool isImport = reader != null;
|
||||
bool isImport = item.ID == 0;
|
||||
|
||||
if (isImport)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user