From 9527457ca029f1a3762ea697415bd8b0b7d88d63 Mon Sep 17 00:00:00 2001 From: Fyren Date: Mon, 4 Oct 2010 22:40:47 -0400 Subject: [PATCH] Fixed 'sm plugins' public command skipping plugins in recommended listing (bug 4501, r=dvander). --- core/PluginSys.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/PluginSys.cpp b/core/PluginSys.cpp index 6ee5786e..6e8cc6a4 100644 --- a/core/PluginSys.cpp +++ b/core/PluginSys.cpp @@ -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); } }