2014-04-06 14:15:47 +02:00
|
|
|
package me.libraryaddict.disguise.commands;
|
|
|
|
|
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandExecutor;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
|
|
|
|
public class LibsDisguisesCommand implements CommandExecutor {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
|
2014-04-08 18:56:10 +02:00
|
|
|
sender.sendMessage(ChatColor.DARK_GREEN
|
|
|
|
+ "This server is running "
|
2015-03-29 00:05:53 +01:00
|
|
|
+ "Lib's Disguises v."
|
|
|
|
+ Bukkit.getPluginManager().getPlugin("LibsDisguises").getDescription().getVersion()
|
|
|
|
+ "by libraryaddict, maintained by NavidK0");
|
2014-04-06 14:15:47 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|