mirror of
https://github.com/velour/catbase.git
synced 2025-04-03 11:49:55 +00:00
bot: only provide help for whitelist items
This commit is contained in:
parent
b69990e10f
commit
11224e0a2f
@ -68,7 +68,7 @@ func (b *bot) checkHelp(conn Connector, channel string, parts []string) {
|
|||||||
if len(parts) == 1 {
|
if len(parts) == 1 {
|
||||||
// just print out a list of help topics
|
// just print out a list of help topics
|
||||||
topics := "Help topics: about variables"
|
topics := "Help topics: about variables"
|
||||||
for name := range b.plugins {
|
for _, name := range b.GetWhitelist() {
|
||||||
name = pluginNameStem(name)
|
name = pluginNameStem(name)
|
||||||
topics = fmt.Sprintf("%s, %s", topics, name)
|
topics = fmt.Sprintf("%s, %s", topics, name)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user