summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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