diff --git a/ChangeLog b/ChangeLog index aacaaa9d..49b5dfe7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -24,6 +24,10 @@ Fish (F), Mark (M) - Exclude system del now takes a host rather than an index. (M) - Channel members now use client pointer so they do not need to track nick changes. (M) + - Fix up make install, make dist and wrappers for starting/stopping + NeoStats (F) + - Fix statserv map command, and fix neostats server list command (F) + - Fix Statserv server minparam count (F) * NeoStats * Version 3.0.prealpha2 - First recommended release to devlist only as prealpha2. (M) diff --git a/modules/statserv/statserv.c b/modules/statserv/statserv.c index 34f42cb8..f78c6677 100644 --- a/modules/statserv/statserv.c +++ b/modules/statserv/statserv.c @@ -93,7 +93,7 @@ ModuleInfo module_info = { /** Bot comand table */ static bot_cmd ss_commands[]= { - {"SERVER", ss_cmd_server, 0, 0, ss_help_server, ss_help_server_oneline}, + {"SERVER", ss_cmd_server, 1, 0, ss_help_server, ss_help_server_oneline}, {"MAP", ss_cmd_map, 0, 0, ss_help_map, ss_help_map_oneline}, {"CHANNEL", ss_cmd_channel, 0, 0, ss_help_channel, ss_help_channel_oneline}, {"NETSTATS", ss_cmd_netstats, 0, 0, ss_help_netstats, ss_help_netstats_oneline},