Package de.diddiz.LogBlock

Examples of de.diddiz.LogBlock.QueryParams


        if (logblock == null) return false;

        Util.message(senderName, ChatColor.GREEN + "Starting rollback..");

        for (String world : worlds) {
            QueryParams params = null;
            try {
                params = new QueryParams(logblock);
                params.setPlayer(target);
                //params.since = (time * plugin.Settings.getInteger("backDaysAgo"));
                if (plugin.getConfigs().getBackDaysAgo() > 0){
                    params.since = (1440 * plugin.getConfigs().getBackDaysAgo());
                }
                params.world = plugin.getServer().getWorld(world);
View Full Code Here

TOP

Related Classes of de.diddiz.LogBlock.QueryParams

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.