mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-03 02:06:23 +02:00
21 lines
690 B
Java
21 lines
690 B
Java
package com.gmail.nossr50.runnables;
|
|
|
|
import com.gmail.nossr50.util.Users;
|
|
|
|
public class RemoveProfileFromMemoryTask implements Runnable {
|
|
private String playerName = null;
|
|
|
|
public RemoveProfileFromMemoryTask(String playerName) {
|
|
this.playerName = playerName;
|
|
}
|
|
|
|
@Override
|
|
public void run() {
|
|
//Check if the profile still exists (stuff like MySQL reconnection removes profiles)
|
|
if (Users.players.containsKey(playerName.toLowerCase())) {
|
|
Users.getProfileByName(playerName.toLowerCase()).save(); //We save here so players don't quit/reconnect to cause lag
|
|
Users.removeUserByName(playerName.toLowerCase());
|
|
}
|
|
}
|
|
}
|