$ git clone http://tcclient.ion.nu/tc_client.git
commit a39c426b00c35ab5ab04251cd8cc482155b45b87
Author: Alicia <...>
Date:   Fri Dec 11 20:46:20 2015 +0100

    Reimplemented announcement of moderators.

diff --git a/ChangeLog b/ChangeLog
index b99813b..4b47c84 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,5 @@
+0.37:
+Reimplemented announcement of moderators.
 0.36:
 Implemented /whois <nick/ID> to check someone's username.
 Changed the /whois output to be more human-readable in cases where the user isn't logged in.
diff --git a/Makefile b/Makefile
index 606a2cd..95f9e84 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION=0.36
+VERSION=0.37pre
 CFLAGS=-g3 -Wall $(shell curl-config --cflags)
 LIBS=-g3 $(shell curl-config --libs)
 PREFIX=/usr/local
diff --git a/client.c b/client.c
index 6371ad1..0fa94c0 100644
--- a/client.c
+++ b/client.c
@@ -859,8 +859,13 @@ int main(int argc, char** argv)
       if(amf_comparestrings_c(&amfin->items[0].string, "joins"))
       {
         printf("\n");
+        for(i=0; i<idlistlen; ++i)
+        {
+          if(idlist[i].op){printf("%s is a moderator.\n", idlist[i].name);}
+        }
       }else{
         printf(" entered the channel\n");
+        if(idlist[idlistlen-1].op){printf("%s is a moderator.\n", idlist[idlistlen-1].name);}
         if(amf_comparestrings_c(&amfin->items[0].string, "registered"))
         {
           printf("Connection ID: %i\n", idlist[0].id);