mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-24 06:06:45 +01:00
34 lines
992 B
Java
34 lines
992 B
Java
package com.gmail.nossr50.runnables;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import com.gmail.nossr50.mcMMO;
|
|
import com.gmail.nossr50.datatypes.PlayerProfile;
|
|
import com.gmail.nossr50.util.Database;
|
|
import com.gmail.nossr50.util.Users;
|
|
|
|
public class SQLReconnect implements Runnable {
|
|
private final mcMMO plugin;
|
|
|
|
public SQLReconnect(mcMMO plugin) {
|
|
this.plugin = plugin;
|
|
}
|
|
|
|
@Override
|
|
public void run() {
|
|
if (!Database.isConnected()) {
|
|
Database.connect();
|
|
if (Database.isConnected()) {
|
|
for (PlayerProfile x : Users.players.values()) {
|
|
x.save(); //Save all profiles
|
|
}
|
|
|
|
Users.players.clear(); //Clear the profiles
|
|
for (Player x : plugin.getServer().getOnlinePlayers()) {
|
|
Users.addUser(x); //Add in new profiles, forcing them to 'load' again from MySQL
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|