about summary refs log tree commit diff
path: root/chat.c
diff options
context:
space:
mode:
Diffstat (limited to 'chat.c')
-rw-r--r--chat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/chat.c b/chat.c
index bc23c3f..755bd24 100644
--- a/chat.c
+++ b/chat.c
@@ -125,7 +125,7 @@ static void utilRead(void) {
 }
 
 uint32_t hashInit;
-uint32_t hashBound = 75;
+uint32_t hashBound = 15;
 
 static void parseHash(char *str) {
 	hashInit = strtoul(str, &str, 0);
@@ -399,6 +399,7 @@ int main(int argc, char *argv[]) {
 	ircFormat("CAP LS\r\n");
 	ircFormat("NICK %s\r\n", self.nicks[0]);
 	ircFormat("USER %s 0 * :%s\r\n", user, real);
+	replies[ReplyMOTD]++;
 
 	// Avoid disabling VINTR until main loop.
 	inputInit();