about summary refs log tree commit diff stats
path: root/src/command/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/command.c')
-rw-r--r--src/command/command.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/command/command.c b/src/command/command.c
index 7d35c609..7e868938 100644
--- a/src/command/command.c
+++ b/src/command/command.c
@@ -311,14 +311,13 @@ static struct cmd_t command_defs[] =
           NULL } } },
 
     { "/room",
-        cmd_room, parse_args_with_freetext, 1, 5, NULL,
-        { "/room accept|destroy|config|info", "Room configuration.",
-        { "/room accept|destroy|config|info",
-          "--------------------------------",
+        cmd_room, parse_args, 1, 1, NULL,
+        { "/room accept|destroy|config", "Room configuration.",
+        { "/room accept|destroy|config",
+          "---------------------------",
           "accept  - Accept default room configuration.",
           "destroy - Reject default room configuration.",
           "config  - Edit room configuration.",
-          "info    - Show room details.",
           NULL } } },
 
     { "/kick",
@@ -331,7 +330,7 @@ static struct cmd_t command_defs[] =
           NULL } } },
 
     { "/ban",
-        cmd_ban, parse_args, 1, 2, NULL,
+        cmd_ban, parse_args_with_freetext, 1, 2, NULL,
         { "/ban jid [reason]", "Ban users from chat rooms.",
         { "/ban jid [reason]",
           "-----------------",