Consistent key/argument

* layout in command_extensions.ini
This commit is contained in:
Salanto 2022-06-08 21:35:26 +02:00 committed by Rosemary Witchaven
parent d0c22ee879
commit 75472c6fad
2 changed files with 9 additions and 9 deletions

View File

@ -43,8 +43,8 @@ aliases = clear_notecard notecardclear
[allow_blankposting] [allow_blankposting]
aliases = allowblankposting aliases = allowblankposting
[forceimmediate] [force_noint_pres]
aliases = force_noint_pres aliases = forceimmediate
[allow_iniswap] [allow_iniswap]
aliases = allowiniswap aliases = allowiniswap
@ -76,8 +76,8 @@ aliases = updateban
[ignore_bglist] [ignore_bglist]
aliases = ignorebglist aliases = ignorebglist
[togglewtce] [toggle_wtce]
aliases = toggle_wtce aliases = togglewtce
[toggleshouts] [toggle_shouts]
aliases = toggle_shouts aliases = toggleshouts

View File

@ -105,7 +105,7 @@ const QMap<QString, AOClient::CommandInfo> AOClient::COMMANDS{
{"undisemvowel", {{ACLRole::MUTE}, 1, &AOClient::cmdUnDisemvowel}}, {"undisemvowel", {{ACLRole::MUTE}, 1, &AOClient::cmdUnDisemvowel}},
{"shake", {{ACLRole::MUTE}, 1, &AOClient::cmdShake}}, {"shake", {{ACLRole::MUTE}, 1, &AOClient::cmdShake}},
{"unshake", {{ACLRole::MUTE}, 1, &AOClient::cmdUnShake}}, {"unshake", {{ACLRole::MUTE}, 1, &AOClient::cmdUnShake}},
{"forceimmediate", {{ACLRole::CM}, 0, &AOClient::cmdForceImmediate}}, {"force_noint_pres", {{ACLRole::CM}, 0, &AOClient::cmdForceImmediate}},
{"allow_iniswap", {{ACLRole::CM}, 0, &AOClient::cmdAllowIniswap}}, {"allow_iniswap", {{ACLRole::CM}, 0, &AOClient::cmdAllowIniswap}},
{"afk", {{ACLRole::NONE}, 0, &AOClient::cmdAfk}}, {"afk", {{ACLRole::NONE}, 0, &AOClient::cmdAfk}},
{"savetestimony", {{ACLRole::NONE}, 1, &AOClient::cmdSaveTestimony}}, {"savetestimony", {{ACLRole::NONE}, 1, &AOClient::cmdSaveTestimony}},
@ -144,8 +144,8 @@ const QMap<QString, AOClient::CommandInfo> AOClient::COMMANDS{
{"removeentry", {{ACLRole::CM}, 1, &AOClient::cmdRemoveCategorySong}}, {"removeentry", {{ACLRole::CM}, 1, &AOClient::cmdRemoveCategorySong}},
{"toggleroot", {{ACLRole::CM}, 0, &AOClient::cmdToggleRootlist}}, {"toggleroot", {{ACLRole::CM}, 0, &AOClient::cmdToggleRootlist}},
{"clearcustom", {{ACLRole::CM}, 0, &AOClient::cmdClearCustom}}, {"clearcustom", {{ACLRole::CM}, 0, &AOClient::cmdClearCustom}},
{"togglewtce", {{ACLRole::CM}, 0, &AOClient::cmdToggleWtce}}, {"toggle_wtce", {{ACLRole::CM}, 0, &AOClient::cmdToggleWtce}},
{"toggleshouts", {{ACLRole::CM}, 0, &AOClient::cmdToggleShouts}}}; {"toggle_shouts", {{ACLRole::CM}, 0, &AOClient::cmdToggleShouts}}};
void AOClient::clientDisconnected() void AOClient::clientDisconnected()
{ {