From b60b5a0f827b99fecb8e92e8a283abd14430a502 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Tue, 19 Dec 2000 12:55:41 +0000 Subject: [PATCH] userinvite is in channel show Organization: Straylight/Edgeware From: Ian Jackson --- bot.tcl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bot.tcl b/bot.tcl index 8a1f76e..9d5457b 100755 --- a/bot.tcl +++ b/bot.tcl @@ -1021,7 +1021,8 @@ def_chancmd show { if {[chandb_exists $chan]} { set l "Settings for $chan: autojoin " append l [lindex {no yes} [chandb_get $chan autojoin]] - append l ", mode " [chandb_get $chan mode] "." + append l ", mode " [chandb_get $chan mode] + append l ", userinvite " [chandb_get $chan userinvite] "." append l "\nManagers: " append l [join [chandb_get $chan managers] " "] ucmdr {} $l -- [mdw]