docgen fix
This commit is contained in:
parent
9fd73fe1f4
commit
b42f7df73a
1 changed files with 2 additions and 2 deletions
|
|
@ -1581,9 +1581,9 @@ namespace Server.Commands
|
||||||
|
|
||||||
List<BaseCommandImplementor> commandImpls = BaseCommandImplementor.Implementors;
|
List<BaseCommandImplementor> commandImpls = BaseCommandImplementor.Implementors;
|
||||||
|
|
||||||
for( int i = 0; i < commands.Count; ++i )
|
for( int i = 0; i < commandImpls.Count; ++i )
|
||||||
{
|
{
|
||||||
BaseCommandImplementor command = (BaseCommandImplementor)commandImpls[i];
|
BaseCommandImplementor command = commandImpls[i];
|
||||||
|
|
||||||
string usage = command.Usage;
|
string usage = command.Usage;
|
||||||
string desc = command.Description;
|
string desc = command.Description;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue