Change default value and add comment explaining why skins are never "locally available"

This commit is contained in:
Dean Herbert 2022-01-13 12:48:45 +09:00
parent ebe8ba3c3c
commit 1a29098f3b
1 changed files with 1 additions and 1 deletions

View File

@ -263,6 +263,6 @@ public void Save(Skin skin)
});
}
public override bool IsAvailableLocally(SkinInfo model) => false;
public override bool IsAvailableLocally(SkinInfo model) => true; // skins do not have online download support yet.
}
}