summaryrefslogtreecommitdiff
path: root/src/SMAPI/IContentPackHelper.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2018-12-13 02:11:06 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2018-12-13 02:11:06 -0500
commit95b1dedb667d1fe2fd9ee89ece342bacbdd3be48 (patch)
tree32d8b899aa6b746abb1636f8ddb67854a19d4465 /src/SMAPI/IContentPackHelper.cs
parentfd47e992dbdbf4298fd9130b8ef9bfcf52fcab19 (diff)
downloadSMAPI-95b1dedb667d1fe2fd9ee89ece342bacbdd3be48.tar.gz
SMAPI-95b1dedb667d1fe2fd9ee89ece342bacbdd3be48.tar.bz2
SMAPI-95b1dedb667d1fe2fd9ee89ece342bacbdd3be48.zip
clarify docblock
Diffstat (limited to 'src/SMAPI/IContentPackHelper.cs')
-rw-r--r--src/SMAPI/IContentPackHelper.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/IContentPackHelper.cs b/src/SMAPI/IContentPackHelper.cs
index 6cce964c..e4949f58 100644
--- a/src/SMAPI/IContentPackHelper.cs
+++ b/src/SMAPI/IContentPackHelper.cs
@@ -11,7 +11,7 @@ namespace StardewModdingAPI
/// <summary>Get all content packs loaded for this mod.</summary>
IEnumerable<IContentPack> GetOwned();
- /// <summary>Create a temporary content pack to read files from a directory. Temporary content packs will not appear in the SMAPI log and update checks will not be performed.</summary>
+ /// <summary>Create a temporary content pack to read files from a directory, using randomised manifest fields. Temporary content packs will not appear in the SMAPI log and update checks will not be performed.</summary>
/// <param name="directoryPath">The absolute directory path containing the content pack files.</param>
IContentPack CreateFake(string directoryPath);