summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/ModHelpers
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-04-15 21:45:27 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-09-14 17:14:32 -0400
commit161618d0d92bad5b31e2780c8899c73339d38b62 (patch)
tree55ad574614dbff4396cc244f5215580c161eab60 /src/SMAPI/Framework/ModHelpers
parent6c220453e16c6cb5ad150b61cf02685a97557b3c (diff)
downloadSMAPI-161618d0d92bad5b31e2780c8899c73339d38b62.tar.gz
SMAPI-161618d0d92bad5b31e2780c8899c73339d38b62.tar.bz2
SMAPI-161618d0d92bad5b31e2780c8899c73339d38b62.zip
fix cache miss when not playing in English (#634)
Diffstat (limited to 'src/SMAPI/Framework/ModHelpers')
-rw-r--r--src/SMAPI/Framework/ModHelpers/ContentHelper.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/ModHelpers/ContentHelper.cs b/src/SMAPI/Framework/ModHelpers/ContentHelper.cs
index 8b86fdeb..e02748d2 100644
--- a/src/SMAPI/Framework/ModHelpers/ContentHelper.cs
+++ b/src/SMAPI/Framework/ModHelpers/ContentHelper.cs
@@ -126,7 +126,7 @@ namespace StardewModdingAPI.Framework.ModHelpers
this.FixCustomTilesheetPaths(map, relativeMapPath: key);
// inject map
- this.ModContentManager.Inject(internalKey, map);
+ this.ModContentManager.Inject(internalKey, map, this.CurrentLocaleConstant);
return (T)(object)map;
}