You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 18, 2020. It is now read-only.
@@ -56,7 +53,6 @@ public Command onFailure(BiConsumer<CommandContext, FailureReason> function) {
56
53
57
54
/**
58
55
* An arbitrary value for the description of the command. This isn't used by the API.
59
-
*
60
56
* @param description The description.
61
57
* @return This command instance.
62
58
*/
@@ -65,9 +61,8 @@ public Command withDescription(String description) {
65
61
returnthis;
66
62
}
67
63
68
-
/**
64
+
/**
69
65
* An arbitrary value for the usage of the command. This isn't used by the API.
70
-
*
71
66
* @param usage The usage.
72
67
* @return This command instance.
73
68
*/
@@ -78,7 +73,6 @@ public Command withUsage(String usage) {
78
73
79
74
/**
80
75
* Aliases that will also trigger this command (besides the name). No two commands may have the same alias.
81
-
*
82
76
* @param aliases The aliases.
83
77
* @return This command instance.
84
78
*/
@@ -89,7 +83,6 @@ public Command withAliases(Set<String> aliases) {
89
83
90
84
/**
91
85
* Aliases that will also trigger this command (besides the name). No two commands may have the same alias.
92
-
*
93
86
* @param aliases The aliases.
94
87
* @return This command instance.
95
88
*/
@@ -100,7 +93,6 @@ public Command withAliases(String... aliases) {
100
93
101
94
/**
102
95
* If true, the command will trigger regardless of case. (i.e. both !ping and !PiNg will trigger the command)
103
-
*
104
96
* @param caseSensitive Case sensitive or not.
105
97
* @return This command instance.
106
98
*/
@@ -111,7 +103,6 @@ public Command caseSensitive(boolean caseSensitive) {
111
103
112
104
/**
113
105
* If true, the message that triggered this command will automatically be deleted.
114
-
*
115
106
* @param deleteCommand To delete or not.
116
107
* @return This command instance.
117
108
*/
@@ -122,9 +113,8 @@ public Command deleteCommand(boolean deleteCommand) {
122
113
123
114
/**
124
115
* The set of permissions a person requires to execute this command. Failing to meet these requirements will result in {@link FailureReason#AUTHOR_MISSING_PERMISSIONS}
125
-
*
126
116
* @param requiredPermissions The required permissions.
0 commit comments