- Can't clear player cache while a different thread might still need to get the players (ante crash)

This commit is contained in:
Sol
2016-05-03 17:27:43 +00:00
parent be23361026
commit 6d631c6a96

View File

@@ -761,6 +761,6 @@ public class Game {
public void clearCaches() { public void clearCaches() {
spabCache.clear(); spabCache.clear();
cardCache.clear(); cardCache.clear();
playerCache.clear(); //playerCache.clear();
} }
} }