diff options
author | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-12-22 04:41:39 +0000 |
---|---|---|
committer | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-12-22 04:41:39 +0000 |
commit | f02336dc6bdb649d5949454f3faacbef93ea7a78 (patch) | |
tree | 853a1f4fe95267ea3d985c1fc4a3f3066e295fc9 /src/plexus.c | |
parent | 4fa5060dccf69a60d592f54cf6a5c8f4ffd68062 (diff) |
BUILD : 1.7.6 (497) BUGS : 256, 258 NOTES : support for QS, and fixed a /away bug
git-svn-id: svn://svn.anope.org/anope/trunk@497 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@351 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/plexus.c')
-rw-r--r-- | src/plexus.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plexus.c b/src/plexus.c index bafe2e33a..de817a926 100644 --- a/src/plexus.c +++ b/src/plexus.c @@ -1,4 +1,4 @@ -/* Hybrid IRCD functions +/* PlexusIRCD IRCD functions * * (C) 2003 Anope Team * Contact us at info@anope.org @@ -779,8 +779,9 @@ int anope_event_ping(char *source, int ac, char **av) int anope_event_away(char *source, int ac, char **av) { - if (ac < 1) + if (ac) { return MOD_CONT; + } if (!source) { return MOD_CONT; |