diff options
author | June McEnroe <june@causal.agency> | 2022-02-26 15:51:42 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-02-26 15:51:42 -0500 |
commit | b6c72806498e95cb08606a7ec46742e5439d3348 (patch) | |
tree | 08345aae3fa8e302454b627113fab94494f9d3e5 /chat.c | |
parent | Only add available commands to complete (diff) | |
download | catgirl-b6c72806498e95cb08606a7ec46742e5439d3348.tar.gz catgirl-b6c72806498e95cb08606a7ec46742e5439d3348.zip |
Specify commands which depend on caps
Currently only /setname.
Diffstat (limited to '')
-rw-r--r-- | chat.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chat.c b/chat.c index b085165..b74fdc0 100644 --- a/chat.c +++ b/chat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2020 C. McEnroe <june@causal.agency> +/* Copyright (C) 2020 June McEnroe <june@causal.agency> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -371,7 +371,6 @@ int main(int argc, char *argv[]) { set(&network.name, host); set(&self.nick, "*"); - commandCompleteAdd(); inputCompleteAdd(); ircConfig(insecure, trust, cert, priv); |