diff options
Diffstat (limited to 'src/StardewModdingAPI/Events/EventArgsIntChanged.cs')
-rw-r--r-- | src/StardewModdingAPI/Events/EventArgsIntChanged.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/StardewModdingAPI/Events/EventArgsIntChanged.cs b/src/StardewModdingAPI/Events/EventArgsIntChanged.cs index 0ccb9b87..31079730 100644 --- a/src/StardewModdingAPI/Events/EventArgsIntChanged.cs +++ b/src/StardewModdingAPI/Events/EventArgsIntChanged.cs @@ -23,8 +23,8 @@ namespace StardewModdingAPI.Events /// <param name="newInt">The current value.</param> public EventArgsIntChanged(int priorInt, int newInt) { - this.NewInt = NewInt; - this.PriorInt = PriorInt; + this.PriorInt = priorInt; + this.NewInt = newInt; } } } |