[Bleeding] Also blacklist ":" in plugin command aliases.

By: t00thpick1 <t00thpick1dirko@gmail.com>
This commit is contained in:
Bukkit/Spigot
2014-02-08 15:50:30 -05:00
parent 2ee5a01e78
commit 2c68d4b554
2 changed files with 13 additions and 3 deletions

View File

@@ -537,7 +537,9 @@ public final class PluginDescriptionFile {
* <td>Alternative command names, with special usefulness for commands
* that are already registered. <i>Aliases are not effective when
* defined at runtime,</i> so the plugin description file is the
* only way to have them properly defined.</td>
* only way to have them properly defined.
* <p>
* Note: Command aliases may not have a colon in them.</td>
* <td>Single alias format:
* <blockquote><pre>aliases: combust_me</pre></blockquote> or
* multiple alias format:
@@ -617,7 +619,7 @@ public final class PluginDescriptionFile {
* # Having an empty declaration is useful for defining the description, permission, and messages from a configuration dynamically
* apocalypse:
*</pre></blockquote>
* Note: command names may not have a colon in their name.
* Note: Command names may not have a colon in their name.
*
* @return the commands this plugin will register
*/