diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:12 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:12 +0000 |
commit | 34afc576d7b3f43cf099b8cb28e86a4740bf41f1 (patch) | |
tree | d4e031b6613698a088672fc8f92996c8749c4e12 /src | |
parent | 173d5b4c116f4c0a4d9da0568f8d084eb06be36d (diff) |
Fix compiler error caused by removal of unassign() from w00t.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1262 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/core/bs_set.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/bs_set.c b/src/core/bs_set.c index 4126603d4..08d12ec23 100644 --- a/src/core/bs_set.c +++ b/src/core/bs_set.c @@ -6,8 +6,8 @@ * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. - * Based on the original code of Services by Andy Church. - * + * Based on the original code of Services by Andy Church. + * * $Id$ * */ @@ -180,7 +180,7 @@ int do_set(User * u) if (!stricmp(value, "ON")) { ci->botflags |= BS_NOBOT; if (ci->bi) - unassign(u, ci); + ci->bi->UnAssign(u, ci); notice_lang(s_BotServ, u, BOT_SET_NOBOT_ON, ci->name); } else if (!stricmp(value, "OFF")) { ci->botflags &= ~BS_NOBOT; |