diff options
author | Zoryn Aaron <zoryn4163@gmail.com> | 2016-03-27 16:53:47 -0400 |
---|---|---|
committer | Zoryn Aaron <zoryn4163@gmail.com> | 2016-03-27 16:53:47 -0400 |
commit | 1debeb8eff19f2b5e222579405413ae175fb361d (patch) | |
tree | 020f072509e60b39900fc63fc8761515dfeaf694 | |
parent | 36a3401e14ce911e1c2a7855d2d4d9a709fbf526 (diff) | |
download | SMAPI-1debeb8eff19f2b5e222579405413ae175fb361d.tar.gz SMAPI-1debeb8eff19f2b5e222579405413ae175fb361d.tar.bz2 SMAPI-1debeb8eff19f2b5e222579405413ae175fb361d.zip |
updates
-rw-r--r-- | StardewModdingAPI/Config.cs | 4 |
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 |