diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-10-28 19:31:12 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-10-28 19:31:12 -0400 |
commit | 2872cad9fea48a5435bcac2f4803af96133eb6b9 (patch) | |
tree | 88c9c3eb0fe9cbeed5235de8c0e7bf8d5875d355 /src/SMAPI | |
parent | b831e36c5b6e8bc661f203b5ed8c251deed833bc (diff) | |
download | SMAPI-2872cad9fea48a5435bcac2f4803af96133eb6b9.tar.gz SMAPI-2872cad9fea48a5435bcac2f4803af96133eb6b9.tar.bz2 SMAPI-2872cad9fea48a5435bcac2f4803af96133eb6b9.zip |
fix Context.IsPlayerFree being true before player finishes transitioning to a new location in multiplayer
Diffstat (limited to 'src/SMAPI')
-rw-r--r-- | src/SMAPI/Context.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Context.cs b/src/SMAPI/Context.cs index 3905699e..c7aed81d 100644 --- a/src/SMAPI/Context.cs +++ b/src/SMAPI/Context.cs @@ -17,7 +17,7 @@ namespace StardewModdingAPI public static bool IsWorldReady { get; internal set; } /// <summary>Whether <see cref="IsWorldReady"/> is true and the player is free to act in the world (no menu is displayed, no cutscene is in progress, etc).</summary> - public static bool IsPlayerFree => Context.IsWorldReady && Game1.activeClickableMenu == null && !Game1.dialogueUp && (!Game1.eventUp || Game1.isFestival()); + public static bool IsPlayerFree => Context.IsWorldReady && Game1.currentLocation != null && Game1.activeClickableMenu == null && !Game1.dialogueUp && (!Game1.eventUp || Game1.isFestival()); /// <summary>Whether <see cref="IsPlayerFree"/> is true and the player is free to move (e.g. not using a tool).</summary> public static bool CanPlayerMove => Context.IsPlayerFree && Game1.player.CanMove; |