summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/ContentManagers
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-02-01 00:27:53 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-02-01 00:27:53 -0500
commitc8191449a00e3db08214e3b1146e17f89f0245c5 (patch)
tree8cbd42ac3585e11d8a05f58e87f652c4c136aec5 /src/SMAPI/Framework/ContentManagers
parent125b38c6e62d86115045c2cece6c6c3d1da35600 (diff)
downloadSMAPI-c8191449a00e3db08214e3b1146e17f89f0245c5.tar.gz
SMAPI-c8191449a00e3db08214e3b1146e17f89f0245c5.tar.bz2
SMAPI-c8191449a00e3db08214e3b1146e17f89f0245c5.zip
add support for *.tmx map files
Diffstat (limited to 'src/SMAPI/Framework/ContentManagers')
-rw-r--r--src/SMAPI/Framework/ContentManagers/ModContentManager.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/SMAPI/Framework/ContentManagers/ModContentManager.cs b/src/SMAPI/Framework/ContentManagers/ModContentManager.cs
index fdf76b24..0a526fc8 100644
--- a/src/SMAPI/Framework/ContentManagers/ModContentManager.cs
+++ b/src/SMAPI/Framework/ContentManagers/ModContentManager.cs
@@ -154,6 +154,7 @@ namespace StardewModdingAPI.Framework.ContentManagers
// unpacked map
case ".tbin":
+ case ".tmx":
{
// validate
if (typeof(T) != typeof(Map))