This commit is contained in:
Zoryn Aaron 2016-03-27 16:53:47 -04:00
parent 36a3401e14
commit 1debeb8eff
1 changed files with 2 additions and 2 deletions

View File

@ -165,12 +165,12 @@ namespace StardewModdingAPI
} }
/// <summary> /// <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! /// NOTE: You MUST set your config EQUAL to the return of this method!
/// </summary> /// </summary>
public static T ReloadConfig<T>(this T baseConfig) where T : Config public static T ReloadConfig<T>(this T baseConfig) where T : Config
{ {
return baseConfig.UpdateConfig<T>(); return baseConfig.LoadConfig<T>();
} }
} }
} }