diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2018-12-13 01:26:54 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2018-12-13 01:26:54 -0500 |
commit | 11787f9fea35ee8597c8a4c028b9c3be42751463 (patch) | |
tree | 901702d784ef19118b15dab2bb784c422b0230c4 /src/SMAPI/IContentPackHelper.cs | |
parent | e447ce225f46f60131519a1ff77dfddf520696bb (diff) | |
download | SMAPI-11787f9fea35ee8597c8a4c028b9c3be42751463.tar.gz SMAPI-11787f9fea35ee8597c8a4c028b9c3be42751463.tar.bz2 SMAPI-11787f9fea35ee8597c8a4c028b9c3be42751463.zip |
tweak new API method name
Diffstat (limited to 'src/SMAPI/IContentPackHelper.cs')
-rw-r--r-- | src/SMAPI/IContentPackHelper.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/IContentPackHelper.cs b/src/SMAPI/IContentPackHelper.cs index 0c734432..6cce964c 100644 --- a/src/SMAPI/IContentPackHelper.cs +++ b/src/SMAPI/IContentPackHelper.cs @@ -22,6 +22,6 @@ namespace StardewModdingAPI /// <param name="description">The content pack description.</param> /// <param name="author">The content pack author's name.</param> /// <param name="version">The content pack version.</param> - IContentPack CreateFake(string directoryPath, string id, string name, string description, string author, ISemanticVersion version); + IContentPack CreateTemporary(string directoryPath, string id, string name, string description, string author, ISemanticVersion version); } } |