summaryrefslogtreecommitdiff
path: root/modules/commands/bs_set.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-03-29 15:39:58 -0500
committerAdam <Adam@anope.org>2013-03-29 23:50:51 -0500
commitf24e17f8b4a579666bae050d81585d42059e7513 (patch)
tree726206b8f53da7e385115baf204daad32ef76cd4 /modules/commands/bs_set.cpp
parent2b208de02f932715c61e237c9bbd26e3bca3d222 (diff)
Fix /bs set private
Diffstat (limited to 'modules/commands/bs_set.cpp')
-rw-r--r--modules/commands/bs_set.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/bs_set.cpp b/modules/commands/bs_set.cpp
index 123120289..243ac1746 100644
--- a/modules/commands/bs_set.cpp
+++ b/modules/commands/bs_set.cpp
@@ -388,12 +388,12 @@ class CommandBSSetPrivate : public Command
if (value.equals_ci("ON"))
{
- bi->ExtendMetadata("PRIVATE");
+ bi->oper_only = true;
source.Reply(_("Private mode of bot %s is now \002on\002."), bi->nick.c_str());
}
else if (value.equals_ci("OFF"))
{
- bi->Shrink("PRIVATE");
+ bi->oper_only = false;
source.Reply(_("Private mode of bot %s is now \002off\002."), bi->nick.c_str());
}
else