mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-17 15:45:58 +01:00
29 lines
1.1 KiB
Java
29 lines
1.1 KiB
Java
package com.Acrobot.ChestShop.Commands;
|
|
|
|
import com.Acrobot.Breeze.Configuration.Configuration;
|
|
import com.Acrobot.ChestShop.ChestShop;
|
|
import com.Acrobot.ChestShop.Configuration.Messages;
|
|
import com.Acrobot.ChestShop.Configuration.Properties;
|
|
import org.bukkit.ChatColor;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandExecutor;
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
/**
|
|
* @author Acrobot
|
|
*/
|
|
public class Version implements CommandExecutor {
|
|
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
|
|
if (args.length > 0 && args[0].equals("reload")) {
|
|
Configuration.pairFileAndClass(ChestShop.loadFile("config.yml"), Properties.class);
|
|
Configuration.pairFileAndClass(ChestShop.loadFile("local.yml"), Messages.class);
|
|
|
|
sender.sendMessage(ChatColor.DARK_GREEN + "The config was reloaded.");
|
|
return true;
|
|
}
|
|
|
|
sender.sendMessage(ChatColor.GRAY + ChestShop.getPluginName() + "'s version is: " + ChatColor.GREEN + ChestShop.getVersion());
|
|
return true;
|
|
}
|
|
}
|