diff options
Diffstat (limited to 'src/protocol/unreal32.c')
-rw-r--r-- | src/protocol/unreal32.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index 4ad6aa274..5e92fe479 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -1636,6 +1636,9 @@ int anope_event_error(char *source, int ac, char **av) if (debug) { alog("debug: %s", av[0]); } + if(strstr(av[0],"No matching link configuration")!=0) { + alog("Error: Your IRCD's link block may not setup correctly, please check unrealircd.conf"); + } } return MOD_CONT; } @@ -2085,7 +2088,6 @@ void moduleAddIRCDMsgs(void) { m = createMessage("AP", anope_event_null); addCoreMessage(IRCD,m); } - /* The none token version of these is in messages.c */ if (UseTokens) { m = createMessage("2", m_stats); addCoreMessage(IRCD,m); |