mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-09 20:21:44 +01:00
17 lines
502 B
Java
17 lines
502 B
Java
|
package com.Acrobot.ChestShop.Commands;
|
||
|
|
||
|
import com.Acrobot.ChestShop.ChestShop;
|
||
|
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) {
|
||
|
sender.sendMessage(ChestShop.getPluginName() + "'s version is: " + ChestShop.getVersion());
|
||
|
return true;
|
||
|
}
|
||
|
}
|