ignoreList and allowList now array format. Should make things a little more sane.

This commit is contained in:
Storm Dragon
2026-02-01 13:31:25 -05:00
parent dc222c7aab
commit 5e749af65b
2 changed files with 38 additions and 10 deletions

View File

@@ -27,9 +27,12 @@ autoRejoinChannel=true
curseKicker=true
# Symbols used to specify you are calling a bot module.
botCaller=",.!+?"
# People who are allowed to private message the bot separate multiple names with |
allowList=""
ignoreList="storm_bot"
# People who are allowed to private message the bot
# Add multiple names like: allowList=("name1" "name2" "name3")
allowList=()
# People who should be ignored (no greetings, keywords, or word tracking)
# Add multiple names like: ignoreList=("name1" "name2" "name3")
ignoreList=("storm_bot")
# Interval in seconds to send PING to server for connection health check (default: 120)
# Set to 0 to disable proactive ping checks (not recommended)
pingInterval=120