Minor changes
This commit is contained in:
@ -40,9 +40,6 @@ public final class DITSystem extends JavaPlugin implements CommandExecutor, List
|
||||
this.DIT_initialize();
|
||||
this.tab = new TabManager(this,this.config);
|
||||
this.dplug = new DitPluginManager(this);
|
||||
|
||||
|
||||
|
||||
System.out.println(this.getPrefix()+"Started running.");
|
||||
}
|
||||
|
||||
@ -74,8 +71,6 @@ public final class DITSystem extends JavaPlugin implements CommandExecutor, List
|
||||
}
|
||||
public void initOptions(){
|
||||
|
||||
|
||||
|
||||
if (config.getBoolean("Saving.enabled") && config.getInt("Saving.interval")>0){
|
||||
BukkitScheduler scheduler = getServer().getScheduler();
|
||||
scheduler.scheduleSyncRepeatingTask(instance, new Runnable() {
|
||||
@ -93,7 +88,6 @@ public final class DITSystem extends JavaPlugin implements CommandExecutor, List
|
||||
}, 0L, Math.convert(Math.Convert.SECONDS,Math.Convert.TICKS,instance.config.getInt("Saving.interval")));
|
||||
}
|
||||
|
||||
|
||||
if (this.config.isSet("CustomAdvancement.enabled")) {
|
||||
if(config.getBoolean("CustomAdvancement.enabled")){
|
||||
|
||||
|
@ -30,12 +30,9 @@ public class DITTabCompleter implements TabCompleter {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
List<String> idea = new ArrayList<>();
|
||||
List<String> result = new ArrayList<>();
|
||||
String curr_cmd = "";
|
||||
//String[] vizsg_args = new String[args.length+1];
|
||||
List<String> vizsg_list = new ArrayList<>();
|
||||
boolean vizsg_2 = false;
|
||||
if (args.length == 1) {
|
||||
@ -79,8 +76,6 @@ public class DITTabCompleter implements TabCompleter {
|
||||
}
|
||||
}
|
||||
return idea;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
return null;
|
||||
|
@ -3,17 +3,12 @@ package tk.ditservices.commands;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.World;
|
||||
import tk.ditservices.DITSystem;
|
||||
|
||||
import tk.ditservices.utils.Cooldown;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.command.*;
|
||||
import org.bukkit.configuration.file.FileConfiguration;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
|
||||
public class DitCmd implements CommandExecutor {
|
||||
String noArgMsg;
|
||||
DITSystem plugin;
|
||||
@ -58,8 +53,8 @@ public class DitCmd implements CommandExecutor {
|
||||
return true;
|
||||
}else{
|
||||
if (sender instanceof ConsoleCommandSender) {
|
||||
ConsoleCommandSender konzoladmin = (ConsoleCommandSender) sender;
|
||||
konzoladmin.sendMessage(this.noArgMsg);
|
||||
ConsoleCommandSender consoleadmin = (ConsoleCommandSender) sender;
|
||||
consoleadmin.sendMessage(this.noArgMsg);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@ -73,8 +68,8 @@ public class DitCmd implements CommandExecutor {
|
||||
cd.Add(p);
|
||||
}
|
||||
sender.sendMessage(plugin.getPrefix()+ChatColor.GREEN+"Successfully reload!");
|
||||
sender.sendMessage(plugin.getPrefix()+ChatColor.RED+"Notice: Restart your server if the settings didn't applied.");
|
||||
}
|
||||
//sender.sendMessage(plugin.getPrefix()+ChatColor.RED+" Ezt a verziót a "+ChatColor.YELLOW+"'/reload confirm'"+ChatColor.RED+" parancssal tudod csak újratölteni!");
|
||||
}
|
||||
|
||||
if (command.getName().equalsIgnoreCase("st") && args[0].contains("pmanager")){
|
||||
@ -95,7 +90,6 @@ public class DitCmd implements CommandExecutor {
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
if (args[1].equalsIgnoreCase("load")) {
|
||||
PluginCmd.handleLoad(sender,args);
|
||||
}
|
||||
@ -134,14 +128,10 @@ public class DitCmd implements CommandExecutor {
|
||||
cd.Add(p);
|
||||
} return StatCmd.Run(sender);
|
||||
}
|
||||
|
||||
}else{
|
||||
cd.CDText(sender);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user