summaryrefslogtreecommitdiff
path: root/modules/core/cs_set_peace.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/core/cs_set_peace.cpp')
-rw-r--r--modules/core/cs_set_peace.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/cs_set_peace.cpp b/modules/core/cs_set_peace.cpp
index 2039256ac..4b89338ee 100644
--- a/modules/core/cs_set_peace.cpp
+++ b/modules/core/cs_set_peace.cpp
@@ -30,12 +30,12 @@ class CommandCSSetPeace : public Command
if (params[1].equals_ci("ON"))
{
ci->SetFlag(CI_PEACE);
- source.Reply(_("Peace option for %s is now \002\002."), ci->name.c_str());
+ source.Reply(_("Peace option for %s is now \002on\002."), ci->name.c_str());
}
else if (params[1].equals_ci("OFF"))
{
ci->UnsetFlag(CI_PEACE);
- source.Reply(_("Peace option for %s is now \002\002."), ci->name.c_str());
+ source.Reply(_("Peace option for %s is now \002off\002."), ci->name.c_str());
}
else
this->OnSyntaxError(source, "PEACE");