summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoryn Aaron <zoryn4163@gmail.com>2016-03-27 16:53:47 -0400
committerZoryn Aaron <zoryn4163@gmail.com>2016-03-27 16:53:47 -0400
commit1debeb8eff19f2b5e222579405413ae175fb361d (patch)
tree020f072509e60b39900fc63fc8761515dfeaf694
parent36a3401e14ce911e1c2a7855d2d4d9a709fbf526 (diff)
downloadSMAPI-1debeb8eff19f2b5e222579405413ae175fb361d.tar.gz
SMAPI-1debeb8eff19f2b5e222579405413ae175fb361d.tar.bz2
SMAPI-1debeb8eff19f2b5e222579405413ae175fb361d.zip
updates
-rw-r--r--StardewModdingAPI/Config.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/StardewModdingAPI/Config.cs b/StardewModdingAPI/Config.cs
index 035d28d7..d978d848 100644
--- a/StardewModdingAPI/Config.cs
+++ b/StardewModdingAPI/Config.cs
@@ -165,12 +165,12 @@ namespace StardewModdingAPI
}
/// <summary>
- /// Re-reads the json blob on the disk and merges its values with a default config
+ /// Re-reads the json blob on the disk and merges its values with a default config.
/// NOTE: You MUST set your config EQUAL to the return of this method!
/// </summary>
public static T ReloadConfig<T>(this T baseConfig) where T : Config
{
- return baseConfig.UpdateConfig<T>();
+ return baseConfig.LoadConfig<T>();
}
}
} \ No newline at end of file