1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-12-16 12:06:35 +01:00

Remove redundant command /mykey

You can get your own key with the /whois command
This commit is contained in:
jfreegman
2021-11-11 10:05:52 -05:00
parent 06bdb0d167
commit cbf3145aee
5 changed files with 1 additions and 28 deletions

View File

@@ -302,7 +302,6 @@ static void help_draw_groupchats(ToxWindow *self)
wprintw(win, " /unignore <name> : Unignore an ignored peer\n");
wprintw(win, " /kick <name> : Remove a peer from the group\n");
wprintw(win, " /mod <name> : Promote a peer to moderator\n");
wprintw(win, " /mykey : Print your groupchat ID\n");
wprintw(win, " /passwd <s> : Set a password needed to join the group\n");
wprintw(win, " /peerlimit <n> : Set the maximum number of peers that can join\n");
wprintw(win, " /privacy <type> : Set the group privacy state: private | public\n");
@@ -488,7 +487,7 @@ void help_onKey(ToxWindow *self, wint_t key)
break;
case L'r':
help_init_window(self, 24, 80);
help_init_window(self, 23, 80);
self->help->type = HELP_GROUP;
break;
}