updates
This commit is contained in:
parent
36a3401e14
commit
1debeb8eff
|
@ -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>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue