fix errors in the game's update causing the game to freeze until the player presses a key in the SMAPI console
This commit is contained in:
parent
9fecaa7989
commit
6b9372237c
|
@ -17,6 +17,7 @@ For players:
|
|||
* SMAPI now detects issues in `ObjectInformation.xnb` files caused by outdated XNB mods.
|
||||
* Errors when loading a save are now shown in the SMAPI console.
|
||||
* Improved console logging performance.
|
||||
* Fixed errors during game update causing the game to hang.
|
||||
|
||||
For mod developers:
|
||||
* `Console.Out` messages are now written to the log file.
|
||||
|
|
|
@ -242,7 +242,6 @@ namespace StardewModdingAPI.Framework
|
|||
catch (Exception ex)
|
||||
{
|
||||
this.Monitor.Log($"An error occured in the base update loop: {ex.GetLogSummary()}", LogLevel.Error);
|
||||
Console.ReadKey();
|
||||
}
|
||||
|
||||
// raise update events
|
||||
|
|
Loading…
Reference in New Issue