summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/IManifest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/StardewModdingAPI/IManifest.cs')
-rw-r--r--src/StardewModdingAPI/IManifest.cs10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/StardewModdingAPI/IManifest.cs b/src/StardewModdingAPI/IManifest.cs
index 9513834a..befef901 100644
--- a/src/StardewModdingAPI/IManifest.cs
+++ b/src/StardewModdingAPI/IManifest.cs
@@ -32,14 +32,8 @@ namespace StardewModdingAPI
/// <summary>The other mods that must be loaded before this mod.</summary>
IManifestDependency[] Dependencies { get; }
- /// <summary>The mod's unique ID in the Chucklefish mod site (if any), used for update checks.</summary>
- string ChucklefishID { get; }
-
- /// <summary>The mod's unique ID in Nexus Mods (if any), used for update checks.</summary>
- string NexusID { get; }
-
- /// <summary>The mod's organisation and project name on GitHub (if any), used for update checks.</summary>
- string GitHubProject { get; }
+ /// <summary>The namespaced mod IDs to query for updates (like <c>Nexus:541</c>).</summary>
+ string[] UpdateKeys { get; set; }
/// <summary>Any manifest fields which didn't match a valid field.</summary>
IDictionary<string, object> ExtraFields { get; }