diff options
Diffstat (limited to 'src/protocol/plexus.c')
-rw-r--r-- | src/protocol/plexus.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/protocol/plexus.c b/src/protocol/plexus.c index 00be78d3f..a6fa39929 100644 --- a/src/protocol/plexus.c +++ b/src/protocol/plexus.c @@ -154,13 +154,13 @@ void plexus_set_umode(User * user, int ac, char **av) while (*modes) { - /* This looks better, much better than "add ? (do_add) : (do_remove)". - * At least this is readable without paying much attention :) -GD - */ - if (add) - user->mode |= umodes[(int) *modes]; - else - user->mode &= ~umodes[(int) *modes]; + /* This looks better, much better than "add ? (do_add) : (do_remove)". + * At least this is readable without paying much attention :) -GD + */ + if (add) + user->mode |= umodes[(int) *modes]; + else + user->mode &= ~umodes[(int) *modes]; switch (*modes++) { case '+': @@ -933,8 +933,8 @@ int anope_event_away(char *source, int ac, char **av) if (!source) { return MOD_CONT; } - m_away(source, (ac ? av[0] : NULL)); - return MOD_CONT; + m_away(source, (ac ? av[0] : NULL)); + return MOD_CONT; } int anope_event_kill(char *source, int ac, char **av) |