Package com.mcbans.firestar.mcbans.callBacks

Examples of com.mcbans.firestar.mcbans.callBacks.ManualResync


            }

            // Check if all sync
            if (args.size() > 0 && args.get(0).equalsIgnoreCase("all")){
                send(ChatColor.GREEN + " Re-Sync has started!");
                ManualResync manualSyncBanRunner = new ManualResync(plugin, senderName);
                (new Thread(manualSyncBanRunner)).start();
            }else{
                long syncInterval = 60 * config.getSyncInterval();
                if(syncInterval < (60 * 5)){ // minimum 5 minutes
                    syncInterval = 60 * 5;
 
View Full Code Here

TOP

Related Classes of com.mcbans.firestar.mcbans.callBacks.ManualResync

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.