diff --git a/RecrownedAthenaeum/UI/Skin/SkinManager.cs b/RecrownedAthenaeum/UI/Skin/SkinManager.cs index 07612e0..2741739 100644 --- a/RecrownedAthenaeum/UI/Skin/SkinManager.cs +++ b/RecrownedAthenaeum/UI/Skin/SkinManager.cs @@ -33,7 +33,12 @@ namespace RecrownedAthenaeum.UI.Skin /// /// Whether or not the skin manager is set up with a and . /// - public bool ReadyForUse { get { return (loadedSkin != null && BaseSkin != null); } } + public bool MergingSkins { get { return (loadedSkin != null && SkinUseable); } } + + /// + /// Whether or not this manager has been set up with at least a base skin. + /// + public bool SkinUseable { get { return BaseSkin == null; } } /// /// The list of paths for all found skins by . May be null.