From 8dd33bb306cd63c8a8f692edc7c24f55d3c4bd6c Mon Sep 17 00:00:00 2001 From: irungentoo Date: Wed, 27 Nov 2013 16:48:48 -0500 Subject: [PATCH] 30 seconds is way too long. --- toxcore/group_chats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toxcore/group_chats.c b/toxcore/group_chats.c index ca41949f..90e8752b 100644 --- a/toxcore/group_chats.c +++ b/toxcore/group_chats.c @@ -733,7 +733,7 @@ static void send_names(Group_Chat *chat) if (is_timeout(chat->last_sent_nick, 180)) if (group_send_nick(chat, chat->nick, chat->nick_len) > 0) { if (!chat->last_sent_nick) - chat->last_sent_nick = (unix_time() - NICK_SEND_INTERVAL) + 30; + chat->last_sent_nick = (unix_time() - NICK_SEND_INTERVAL) + 10; else chat->last_sent_nick = unix_time(); }