This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
Repositories
Datasets
Forum
实训
竞赛
大数据
应用
Register
Sign In
youys
/
Discord.Net
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
34
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
Renamed IsHidden -> Hide
pull/8/head
RogueException
9 years ago
parent
063d56687c
commit
b25b0e92b2
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/Discord.Net.Commands/CommandBuilder.cs
+1
-1
src/Discord.Net.Commands/CommandsPlugin.cs
+ 1
- 1
src/Discord.Net.Commands/CommandBuilder.cs
View File
@@ -49,7 +49,7 @@ namespace Discord.Commands
_isClosed = true;
return this;
}
public CommandBuilder
Is
Hid
d
e
n
()
public CommandBuilder Hide()
{
_command.IsHidden = true;
return this;
+ 1
- 1
src/Discord.Net.Commands/CommandsPlugin.cs
View File
@@ -42,7 +42,7 @@ namespace Discord.Commands
{
CreateCommand("help")
.Parameter("command", ParameterType.Optional)
.
Is
Hid
d
e
n
()
.Hide()
.Info("Returns information about commands.")
.Do(async e =>
{
Write
Preview
Loading…
Cancel
Save