fix reload_i18n not reloading content pack translations
This commit is contained in:
parent
74defbfec6
commit
e9b8df4618
|
@ -17,6 +17,7 @@
|
|||
* Mods which use the `[HarmonyPatch(type)]` attribute now work crossplatform. Previously SMAPI couldn't rewrite types in custom attributes for compatibility.
|
||||
* Fixed `BadImageFormatException` error detection.
|
||||
* Fixed black maps on Android for mods which use `.tmx` files.
|
||||
* Fixed `reload_i18n` command not reloading content pack translations.
|
||||
|
||||
* For the web UI:
|
||||
* Added GitHub licenses to mod compatibility list.
|
||||
|
|
|
@ -1280,7 +1280,7 @@ namespace StardewModdingAPI.Framework
|
|||
/// <summary>Reload translations for all mods.</summary>
|
||||
private void ReloadTranslations()
|
||||
{
|
||||
this.ReloadTranslations(this.ModRegistry.GetAll(contentPacks: false));
|
||||
this.ReloadTranslations(this.ModRegistry.GetAll());
|
||||
}
|
||||
|
||||
/// <summary>Reload translations for the given mods.</summary>
|
||||
|
|
Loading…
Reference in New Issue