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
Don't add multiple spaces for multiple groups
pull/260/head
FiniteReality
8 years ago
parent
1ab763e157
commit
cddc39dfa1
1 changed files
with
3 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-2
src/Discord.Net.Commands/Module.cs
+ 3
- 2
src/Discord.Net.Commands/Module.cs
View File
@@ -63,8 +63,9 @@ namespace Discord.Commands
if (groupAttrib.Prefix != null)
{
if (groupPrefix != "")
groupPrefix += " ";
nextGroupPrefix = groupPrefix + groupAttrib.Prefix ?? type.Name;
nextGroupPrefix = groupPrefix + " " + groupAttrib.Prefix ?? type.Name;
else
nextGroupPrefix = groupAttrib.Prefix ?? type.Name;
}
else
{
Write
Preview
Loading…
Cancel
Save