summaryrefslogtreecommitdiff
path: root/src/SMAPI
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2021-01-19 01:05:15 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2021-01-19 01:05:15 -0500
commit5676d94fe655c42e50c27b5eae72b9c96cfc2476 (patch)
treeaefee9b8c44639620bd04550ffe14adf31f166e9 /src/SMAPI
parent00e545715d89f32ab999a3b1f6ae70edec158591 (diff)
downloadSMAPI-5676d94fe655c42e50c27b5eae72b9c96cfc2476.tar.gz
SMAPI-5676d94fe655c42e50c27b5eae72b9c96cfc2476.tar.bz2
SMAPI-5676d94fe655c42e50c27b5eae72b9c96cfc2476.zip
reset some missed map cache fields (#751)
Diffstat (limited to 'src/SMAPI')
-rw-r--r--src/SMAPI/Metadata/CoreAssetPropagator.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/SMAPI/Metadata/CoreAssetPropagator.cs b/src/SMAPI/Metadata/CoreAssetPropagator.cs
index 29c4dc1d..859a1b7a 100644
--- a/src/SMAPI/Metadata/CoreAssetPropagator.cs
+++ b/src/SMAPI/Metadata/CoreAssetPropagator.cs
@@ -791,6 +791,7 @@ namespace StardewModdingAPI.Metadata
case Town _:
this.Reflection.GetField<bool>(location, "ccRefurbished").SetValue(false);
this.Reflection.GetField<bool>(location, "isShowingDestroyedJoja").SetValue(false);
+ this.Reflection.GetField<bool>(location, "isShowingSpecialOrdersBoard").SetValue(false);
this.Reflection.GetField<bool>(location, "isShowingUpgradedPamHouse").SetValue(false);
break;
@@ -799,6 +800,10 @@ namespace StardewModdingAPI.Metadata
case Forest _:
this.Reflection.GetField<bool>(location, "hasShownCCUpgrade").SetValue(false);
break;
+
+ case Mountain _:
+ this.Reflection.GetField<bool>(location, "bridgeRestored").SetValue(false);
+ break;
}
// general updates