diff --git a/README.md b/README.md index 842b92f..cf32cc6 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,11 @@

+``` +[13:51:00] A sane IRC framework for the D language +[13:51:11] s/sane/professional +``` + ## Installation To add birchwood to your project simply run: @@ -27,7 +32,7 @@ TODO: ## TODO -- [ ] Server name saving so it automatically uses it in replies where it needs to (currently hardcoded to freenode for testing reasons) +- [ ] Automatic learning of things like server name, caps (if received etc) - [ ] Request-response support (waiting/promises) ## License diff --git a/source/birchwood/client.d b/source/birchwood/client.d index 05e099b..26e5a6d 100644 --- a/source/birchwood/client.d +++ b/source/birchwood/client.d @@ -575,7 +575,7 @@ public class Client import core.thread; Thread.sleep(dur!("seconds")(2)); - this.socket.send((cast(ubyte[])"USER doggie doggie irc.freenode.net :Tristan B. Kildaire")~[cast(ubyte)13, cast(ubyte)10]); + this.socket.send((cast(ubyte[])"USER doggie doggie irc.frdeenode.net :Tristan B. Kildaire")~[cast(ubyte)13, cast(ubyte)10]); yes=false; }