From 2ff8e79766293c4749c94163cf38fb7212636f4f Mon Sep 17 00:00:00 2001 From: AlexTheCoder Date: Tue, 7 Nov 2017 02:22:16 -0500 Subject: [PATCH] Fix placing value in the wrong map --- Plugins/Mineplex.Core/src/mineplex/core/stats/PlayerStats.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Mineplex.Core/src/mineplex/core/stats/PlayerStats.java b/Plugins/Mineplex.Core/src/mineplex/core/stats/PlayerStats.java index f7820823e..8b4297e50 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/stats/PlayerStats.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/stats/PlayerStats.java @@ -49,7 +49,7 @@ public class PlayerStats { synchronized (lock) { - _stats.put(statName, value); + _statsOld.put(statName, value); } }