From d1d9b1ad55eb85c688fce5425948506803c90249 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Sat, 26 Jan 2019 22:56:53 -0600 Subject: [PATCH] added check for minimal functionality. --- RecrownedAthenaeum/UI/Skin/SkinManager.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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.