summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/ModLoading/ModFailReason.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-08-29 18:25:45 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-08-29 18:25:45 -0400
commite0838a28c045939b497455217bd297e8052d11ee (patch)
tree1283afab68c42fd1f426dfdf363c9d0e473f72cc /src/SMAPI/Framework/ModLoading/ModFailReason.cs
parenta1bc96d365dc40275f198668d3f4c09bd7a92613 (diff)
parent8b6c732d7168edacf44d4dbabd8613f2c38ebc19 (diff)
downloadSMAPI-e0838a28c045939b497455217bd297e8052d11ee.tar.gz
SMAPI-e0838a28c045939b497455217bd297e8052d11ee.tar.bz2
SMAPI-e0838a28c045939b497455217bd297e8052d11ee.zip
Merge branch 'develop' into stable
Diffstat (limited to 'src/SMAPI/Framework/ModLoading/ModFailReason.cs')
-rw-r--r--src/SMAPI/Framework/ModLoading/ModFailReason.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/ModLoading/ModFailReason.cs b/src/SMAPI/Framework/ModLoading/ModFailReason.cs
index cd4623e7..cfb76a33 100644
--- a/src/SMAPI/Framework/ModLoading/ModFailReason.cs
+++ b/src/SMAPI/Framework/ModLoading/ModFailReason.cs
@@ -9,6 +9,9 @@ namespace StardewModdingAPI.Framework.ModLoading
/// <summary>Multiple copies of the mod are installed.</summary>
Duplicate,
+ /// <summary>The folder is empty or contains only ignored files.</summary>
+ EmptyFolder,
+
/// <summary>The mod has incompatible code instructions, needs a newer SMAPI version, or is marked 'assume broken' in the SMAPI metadata list.</summary>
Incompatible,
@@ -22,6 +25,9 @@ namespace StardewModdingAPI.Framework.ModLoading
MissingDependencies,
/// <summary>The mod is marked obsolete in the SMAPI metadata list.</summary>
- Obsolete
+ Obsolete,
+
+ /// <summary>The folder is an XNB mod, which can't be loaded through SMAPI.</summary>
+ XnbMod
}
}