From 09a8287d979b708f823a9e804d30f6a1af7bc71a Mon Sep 17 00:00:00 2001 From: Sam Dodrill Date: Thu, 19 Feb 2015 12:38:53 -0800 Subject: [PATCH] src/supported: fix admin mode being "&" now --- src/supported.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/supported.c b/src/supported.c index 5ca84f6..600b478 100644 --- a/src/supported.c +++ b/src/supported.c @@ -256,7 +256,7 @@ isupport_prefix(const void *ptr) ConfigChannel.use_admin ? "a" : "", ConfigChannel.use_halfop ? "h" : "", ConfigChannel.use_owner ? "~" : "", - ConfigChannel.use_admin ? "!" : "", + ConfigChannel.use_admin ? "&" : "", ConfigChannel.use_halfop ? "%" : ""); return result; }