diff options
Diffstat (limited to 'modules/core/cs_set_secureops.cpp')
-rw-r--r-- | modules/core/cs_set_secureops.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/cs_set_secureops.cpp b/modules/core/cs_set_secureops.cpp index 7b6606922..21fefdb61 100644 --- a/modules/core/cs_set_secureops.cpp +++ b/modules/core/cs_set_secureops.cpp @@ -30,12 +30,12 @@ class CommandCSSetSecureOps : public Command if (params[1].equals_ci("ON")) { ci->SetFlag(CI_SECUREOPS); - source.Reply(_("Secure ops option for %s is now \002\002."), ci->name.c_str()); + source.Reply(_("Secure ops option for %s is now \002on\002."), ci->name.c_str()); } else if (params[1].equals_ci("OFF")) { ci->UnsetFlag(CI_SECUREOPS); - source.Reply(_("Secure ops option for %s is now \002\002."), ci->name.c_str()); + source.Reply(_("Secure ops option for %s is now \002off\002."), ci->name.c_str()); } else this->OnSyntaxError(source, "SECUREOPS"); |