summary refs log tree commit diff
path: root/channel.c
diff options
context:
space:
mode:
authorNakidai <nakidai@disroot.org>2026-02-13 00:52:30 +0300
committerNakidai <nakidai@disroot.org>2026-02-13 00:52:30 +0300
commitd493c4a9b9bb1db0da7418a0a2797c5f2b3d34ff (patch)
treea6b9ce9905864ae4696e3fa0431d8a02096d1877 /channel.c
parent3f2bbeda9cae1e3d3f50d984549c82a5a29d2f6f (diff)
downloadlibreircd-d493c4a9b9bb1db0da7418a0a2797c5f2b3d34ff.tar.gz
libreircd-d493c4a9b9bb1db0da7418a0a2797c5f2b3d34ff.zip
Add TOPIC and t channel flag support
Yay, now there're topic!!
Diffstat (limited to 'channel.c')
-rw-r--r--channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index 2717e5e..f2da302 100644
--- a/channel.c
+++ b/channel.c
@@ -105,7 +105,7 @@ channel_modes_parse(const struct Message *msg)
 				return modes;
 			}
 			queue[queue_r++] = (set << 7) | *m;
-		break; case 'n': case 's':
+		break; case 'n': case 's': case 't':
 			modes[modes_c].mode = *m;
 			modes[modes_c++].set = set;
 		break; default: