コード例 #1
0
ファイル: Command.java プロジェクト: tfermm/TitanChat
 public Command(String name) {
   super(name);
   this.plugin = TitanChat.getInstance();
   this.aliases = new String[0];
   this.briefDesc = "";
   this.fullDesc = "";
   this.usage = "";
   this.permission = "";
   this.maxArgs = 0;
   this.minArgs = 0;
 }
コード例 #2
0
ファイル: Command.java プロジェクト: tfermm/TitanChat
 protected final String getDisplayName(String name) {
   return plugin.getParticipantManager().getParticipant(name).getDisplayName();
 }
コード例 #3
0
ファイル: Command.java プロジェクト: tfermm/TitanChat
 protected final ConsoleCommandSender getConsoleSender() {
   return plugin.getServer().getConsoleSender();
 }
コード例 #4
0
ファイル: Command.java プロジェクト: tfermm/TitanChat
 protected final Player getPlayer(String name) {
   return plugin.getServer().getPlayer(name);
 }
コード例 #5
0
 /**
  * Gets the format
  *
  * @return The format
  */
 public static String getFormat() {
   FileConfiguration config = TitanChat.getInstance().getConfig();
   return colourise(config.getString("formatting.chat", CHAT_FORMAT));
 }