From 8c6dca95dae1878610c4cdf18a2f98578e3c577e Mon Sep 17 00:00:00 2001 From: "Bpendragon (David Camp)" Date: Thu, 2 Feb 2017 13:04:29 -0800 Subject: Corrected CurrentLocationChanged's "NewLocation" and "PriorLocation" descriptors, they displayed in Intellisense as the opposite of what they were. --- src/StardewModdingAPI/Events/EventArgsCurrentLocationChanged.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/StardewModdingAPI') diff --git a/src/StardewModdingAPI/Events/EventArgsCurrentLocationChanged.cs b/src/StardewModdingAPI/Events/EventArgsCurrentLocationChanged.cs index 443429aa..aa0bb377 100644 --- a/src/StardewModdingAPI/Events/EventArgsCurrentLocationChanged.cs +++ b/src/StardewModdingAPI/Events/EventArgsCurrentLocationChanged.cs @@ -9,10 +9,10 @@ namespace StardewModdingAPI.Events /********* ** Accessors *********/ - /// The player's previous location. + /// The player's current location. public GameLocation NewLocation { get; private set; } - /// The player's current location. + /// The player's previous location. public GameLocation PriorLocation { get; private set; } -- cgit