mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
.h cmdName should now work correctly for all commands
This commit is contained in:
@@ -15,7 +15,7 @@ internal sealed class NadekoModuleAttribute : GroupAttribute
|
||||
internal sealed class NadekoDescriptionAttribute : SummaryAttribute
|
||||
{
|
||||
public NadekoDescriptionAttribute([CallerMemberName] string name = "")
|
||||
: base(name)
|
||||
: base(name.ToLowerInvariant())
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -24,7 +24,7 @@ internal sealed class NadekoDescriptionAttribute : SummaryAttribute
|
||||
internal sealed class NadekoUsageAttribute : RemarksAttribute
|
||||
{
|
||||
public NadekoUsageAttribute([CallerMemberName] string name = "")
|
||||
: base(name)
|
||||
: base(name.ToLowerInvariant())
|
||||
{
|
||||
}
|
||||
}
|
@@ -1212,12 +1212,16 @@ exprreact:
|
||||
- exreact
|
||||
- exr
|
||||
exprad:
|
||||
- exprad
|
||||
- exad
|
||||
exprat:
|
||||
- exprat
|
||||
- exat
|
||||
exprdm:
|
||||
- exprdm
|
||||
- exdm
|
||||
exprca:
|
||||
- exprca
|
||||
- exca
|
||||
exprsreload:
|
||||
- expreload
|
||||
|
Reference in New Issue
Block a user