|
@@ -13,40 +13,9 @@ import com.gmail.nossr50.config.LoadProperties;
|
|
import com.gmail.nossr50.runnables.SQLConversionTask;
|
|
import com.gmail.nossr50.runnables.SQLConversionTask;
|
|
|
|
|
|
public class MmoupdateCommand implements CommandExecutor {
|
|
public class MmoupdateCommand implements CommandExecutor {
|
|
-<<<<<<< HEAD
|
|
|
|
- @Override
|
|
|
|
- public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
|
|
|
|
- Player player = null;
|
|
|
|
-
|
|
|
|
- if(sender instanceof Player) {
|
|
|
|
- player = (Player)sender;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- if (sender instanceof Player && !mcPermissions.getInstance().admin(player)) {
|
|
|
|
- sender.sendMessage(ChatColor.YELLOW + "[mcMMO] " + ChatColor.DARK_RED + mcLocale.getString("mcPlayerListener.NoPermission"));
|
|
|
|
- return true;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- sender.sendMessage(ChatColor.GRAY + "Starting conversion..."); //TODO: Needs more locale.
|
|
|
|
- Users.clearUsers();
|
|
|
|
- convertToMySQL();
|
|
|
|
- for (Player x : Bukkit.getServer().getOnlinePlayers()) {
|
|
|
|
- Users.addUser(x);
|
|
|
|
- }
|
|
|
|
- sender.sendMessage(ChatColor.GREEN + "Conversion finished!"); //TODO: Needs more locale.
|
|
|
|
-
|
|
|
|
- return true;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
-=======
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
|
|
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
|
|
- if (CommandHelper.noConsoleUsage(sender)) {
|
|
|
|
- return true;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
if (CommandHelper.noCommandPermissions(sender, "mcmmo.admin")) {
|
|
if (CommandHelper.noCommandPermissions(sender, "mcmmo.admin")) {
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
@@ -65,7 +34,6 @@ public class MmoupdateCommand implements CommandExecutor {
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
->>>>>>> d9b4647cf5b277ae33d20e4e78ca67e1712f1ec7
|
|
|
|
* Convert FlatFile data to MySQL data.
|
|
* Convert FlatFile data to MySQL data.
|
|
*/
|
|
*/
|
|
private void convertToMySQL() {
|
|
private void convertToMySQL() {
|