From 6b9372237c79517a44a4ce3e096634f0273f5ba3 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 29 Apr 2017 12:23:38 -0400 Subject: fix errors in the game's update causing the game to freeze until the player presses a key in the SMAPI console --- src/StardewModdingAPI/Framework/SGame.cs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/StardewModdingAPI/Framework') diff --git a/src/StardewModdingAPI/Framework/SGame.cs b/src/StardewModdingAPI/Framework/SGame.cs index e7c07889..20c6b886 100644 --- a/src/StardewModdingAPI/Framework/SGame.cs +++ b/src/StardewModdingAPI/Framework/SGame.cs @@ -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 -- cgit