Fix placing value in the wrong map

This commit is contained in:
AlexTheCoder 2017-11-07 02:22:16 -05:00 committed by Alexander Meech
parent e835747469
commit 2ff8e79766

View File

@ -49,7 +49,7 @@ public class PlayerStats
{ {
synchronized (lock) synchronized (lock)
{ {
_stats.put(statName, value); _statsOld.put(statName, value);
} }
} }