Fixed 'sm plugins' public command skipping plugins in recommended listing (bug 4501, r=dvander).

This commit is contained in:
Fyren 2010-10-04 22:40:47 -04:00
parent f7d3396001
commit 9527457ca0

View File

@ -2741,6 +2741,6 @@ void CPluginManager::ListPluginsToClient(CPlayer *player, const CCommand &args)
/* Do we actually have more plugins? */
if (iter != m_plugins.end())
{
ClientConsolePrint(e, "To see more, type \"sm plugins %d\"", id + 1);
ClientConsolePrint(e, "To see more, type \"sm plugins %d\"", id);
}
}