docgen fix

This commit is contained in:
mark 2006-06-15 17:37:37 +00:00
parent 9fd73fe1f4
commit b42f7df73a

View file

@ -1581,9 +1581,9 @@ namespace Server.Commands
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 desc = command.Description;