blob: a36b1d7a74e19847de5ce1c3ce8edc8c52c044f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package com.MylesAndMore.tumble.commands;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
import org.bukkit.plugin.Plugin;
public class ReloadCommand implements CommandExecutor {
Plugin plugin = Bukkit.getServer().getPluginManager().getPlugin("tumble");
@Override
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
// Check if the sender has perms to run command
if (!sender.hasPermission("tumble.reload")) {
// If sender does not have permission, display them the permissionMessage from the config
sender.sendMessage(ChatColor.RED + plugin.getConfig().getString("permissionMessage"));
}
else {
// If sender does have permission, reload the plugin's config and display a confirmation message
plugin.reloadConfig();
sender.sendMessage(ChatColor.GREEN + "Tumble configuration reloaded successfully.");
}
return true;
}
}
|