diff options
-rw-r--r-- | docs/release-notes.md | 3 | ||||
-rw-r--r-- | src/SMAPI/Metadata/CoreAssetPropagator.cs | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md index d9b9ca09..24f9bbdd 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -8,6 +8,9 @@ --> ## Upcoming release +* For modders: + * Fixed asset propagation for `Data\MoviesReactions`. + * For the web UI: * Updated the JSON validator/schema for Content Patcher 1.18. diff --git a/src/SMAPI/Metadata/CoreAssetPropagator.cs b/src/SMAPI/Metadata/CoreAssetPropagator.cs index 71199d59..701bc9f2 100644 --- a/src/SMAPI/Metadata/CoreAssetPropagator.cs +++ b/src/SMAPI/Metadata/CoreAssetPropagator.cs @@ -263,7 +263,7 @@ namespace StardewModdingAPI.Metadata case "data\\farmanimals": // FarmAnimal constructor return this.ReloadFarmAnimalData(); - case "data\\moviereactions": // MovieTheater.GetMovieReactions + case "data\\moviesreactions": // MovieTheater.GetMovieReactions this.Reflection .GetField<List<MovieCharacterReaction>>(typeof(MovieTheater), "_genericReactions") .SetValue(content.Load<List<MovieCharacterReaction>>(key)); |