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]
aliases = allowblankposting
[forceimmediate]
aliases = force_noint_pres
[force_noint_pres]
aliases = forceimmediate
[allow_iniswap]
aliases = allowiniswap
@ -76,8 +76,8 @@ aliases = updateban
[ignore_bglist]
aliases = ignorebglist
[togglewtce]
aliases = toggle_wtce
[toggle_wtce]
aliases = togglewtce
[toggleshouts]
aliases = toggle_shouts
[toggle_shouts]
aliases = toggleshouts

View File

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