Don't allow double loads

This commit is contained in:
vemacs 2016-03-02 08:48:32 -07:00
parent e90455463f
commit ba97e5fff5
1 changed files with 4 additions and 0 deletions

View File

@ -53,6 +53,10 @@ public class UUIDMap {
ess.getLogger().log(Level.INFO, "Reading usermap from disk");
}
if (loading) {
return;
}
names.clear();
history.clear();
loading = true;