diff options
author | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-04-29 11:40:46 +0000 |
---|---|---|
committer | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-04-29 11:40:46 +0000 |
commit | 77059470fb1de95f36b3dcc1d759d377c531c9ae (patch) | |
tree | a5a95cc56b815574209649f3ca32883ce3d8426e /src | |
parent | adce568fc27394139fd4ce011a6c4aaaa2643fd4 (diff) |
# BUILD : 1.7.14 (1030) # BUGS : # NOTES : fixed coding booboo, thx to viper
git-svn-id: svn://svn.anope.org/anope/trunk@1030 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@754 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/core/bs_fantasy_kick.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/bs_fantasy_kick.c b/src/core/bs_fantasy_kick.c index e2819d178..9901fa262 100644 --- a/src/core/bs_fantasy_kick.c +++ b/src/core/bs_fantasy_kick.c @@ -80,7 +80,7 @@ int do_fantasy(int argc, char **argv) else { u2 = finduser(target); if (u2 && ci->c && is_on_chan(ci->c, u2)) { - else if (!reason && !is_protected(u2)) + if (!reason && !is_protected(u2)) bot_raw_kick(u, ci, target, "Requested"); else if (!is_protected(u2)) bot_raw_kick(u, ci, target, reason); |