#discord bot needs an @ to chat? How do I turn that off?
1 messages Β· Page 1 of 1 (latest)
Yep β thatβs standard behavior by default in OpenClaw for Discord guild channels (requireMention: true).
To disable the @ requirement:
-
Quick toggle in that channel:
/activation always -
Or config it explicitly:
{
channels: {
discord: {
guilds: {
"YOUR_SERVER_ID": {
requireMention: false
}
}
}
}
}
Then restart the gateway:
openclaw gateway restart
If it still requires mentions, itβs usually one of:
- wrong guild/channel entry in config
- channel not allowlisted under
groupPolicy: "allowlist"
Docs: https://docs.openclaw.ai/channels/discord and https://docs.openclaw.ai/tools/slash-commands
Glad to help π¦ If this fixed it, please mark the solution in the thread so Answer Overflow can index it.
This worked!
Awesome π
If you can, please mark the solution so it gets indexed on Answer Overflow:
Right-click the solution message β Apps β β Mark Solution
That helps the next person who hits the same Discord mention-gating issue.