1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-10 11:43:14 +02:00

- Made "chanop notices" only go to @#chan on non-prefixaq servers (and to ~&@#chan otherwise),

internal: added ugly macro CHANOPPFX which is "~&@" if prefix_aq, else "@".
This commit is contained in:
Bram Matthys
2003-12-10 02:28:12 +00:00
parent f2a2fa77c8
commit cb6b67e586
3 changed files with 13 additions and 5 deletions
+6
View File
@@ -1606,6 +1606,12 @@ int throttle_can_connect(struct IN_ADDR *in);
#define MARK_AS_OFFICIAL_MODULE(modinf) do { if (modinf && modinf->handle) ModuleSetOptions(modinfo->handle, MOD_OPT_OFFICIAL); } while(0)
#ifdef PREFIX_AQ
#define CHANOPPFX "~&@"
#else
#define CHANOPPFX "@"
#endif
#endif /* __struct_include__ */
#include "dynconf.h"