Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Config: Move Bot rank below Driver #7617

Merged
merged 3 commits into from
Nov 1, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 23 additions & 17 deletions config/config-example.js
Original file line number Diff line number Diff line change
Expand Up @@ -585,23 +585,6 @@ exports.grouplist = [
tournaments: true,
joinbattle: true,
},
{
symbol: '*',
id: "bot",
name: "Bot",
inherit: '%',
jurisdiction: 'u',

addhtml: true,
tournaments: true,
declare: true,
bypassafktimer: true,

ip: false,
globalban: false,
lock: false,
alts: false,
},
{
symbol: '@',
id: "mod",
Expand Down Expand Up @@ -645,6 +628,29 @@ exports.grouplist = [
modchat: true,
hiderank: true,
},
{
// Bots are ranked below Driver/Mod so that Global Bots can be kept out
// of modjoin % rooms (namely, Staff).
// (They were previously above Driver/Mod so they can have game management
// permissions drivers don't, but these permissions can be manually given.)
symbol: '*',
id: "bot",
name: "Bot",
inherit: '%',
jurisdiction: 'u',

addhtml: true,
tournaments: true,
Zarel marked this conversation as resolved.
Show resolved Hide resolved
declare: true,
bypassafktimer: true,
gamemanagement: true,

ip: false,
globalban: false,
lock: false,
forcerename: false,
alts: false,
},
{
symbol: '\u2606',
id: "player",
Expand Down