From 8dd94ac7f1fc1b77508b1140787c91413cbb817a Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 16 Dec 2018 19:58:11 -0500 Subject: fix error when hovering items in some cases --- docs/release-notes.md | 3 +++ 1 file changed, 3 insertions(+) (limited to 'docs') diff --git a/docs/release-notes.md b/docs/release-notes.md index 95de15ec..467f2298 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,4 +1,7 @@ # Release notes +## 2.9.3 +* Fixed errors hovering items in some cases with SMAPI 2.9.2. + ## 2.9.2 * For players: * SMAPI now prevents invalid items from crashing the game on hover. -- cgit From 22297e2ee41568b305c164cd54b5d48e92046eca Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 16 Dec 2018 20:28:02 -0500 Subject: fix host peer not cleared when a multiplayer session ends --- docs/release-notes.md | 4 +++- src/SMAPI/Framework/SGame.cs | 2 +- src/SMAPI/Framework/SMultiplayer.cs | 7 +++++++ 3 files changed, 11 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/release-notes.md b/docs/release-notes.md index 467f2298..813f40a7 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,6 +1,8 @@ # Release notes ## 2.9.3 -* Fixed errors hovering items in some cases with SMAPI 2.9.2. +* For players: + * Fixed errors hovering items in some cases with SMAPI 2.9.2. + * Fixed some multiplayer features broken when a farmhand returns to title and rejoins. ## 2.9.2 * For players: diff --git a/src/SMAPI/Framework/SGame.cs b/src/SMAPI/Framework/SGame.cs index 4d790d9f..d515d3ad 100644 --- a/src/SMAPI/Framework/SGame.cs +++ b/src/SMAPI/Framework/SGame.cs @@ -217,7 +217,7 @@ namespace StardewModdingAPI.Framework private void OnReturnedToTitle() { this.Monitor.Log("Context: returned to title", LogLevel.Trace); - this.Multiplayer.Peers.Clear(); + this.Multiplayer.CleanupOnMultiplayerExit(); this.Events.ReturnedToTitle.RaiseEmpty(); #if !SMAPI_3_0_STRICT this.Events.Legacy_AfterReturnToTitle.Raise(); diff --git a/src/SMAPI/Framework/SMultiplayer.cs b/src/SMAPI/Framework/SMultiplayer.cs index 784edae3..29d9b2b8 100644 --- a/src/SMAPI/Framework/SMultiplayer.cs +++ b/src/SMAPI/Framework/SMultiplayer.cs @@ -82,6 +82,13 @@ namespace StardewModdingAPI.Framework this.OnModMessageReceived = onModMessageReceived; } + /// Perform cleanup needed when a multiplayer session ends. + public void CleanupOnMultiplayerExit() + { + this.Peers.Clear(); + this.HostPeer = null; + } + #if !SMAPI_3_0_STRICT /// Handle sync messages from other players and perform other initial sync logic. public override void UpdateEarly() -- cgit