aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_shun.cpp
diff options
context:
space:
mode:
authorGravatar Robby2019-04-28 10:14:21 +0200
committerGravatar Peter Powell2019-04-28 09:14:21 +0100
commite57d1b19ff4823b7885eb7f4d3b37c84d2edca0e (patch)
tree81e3825243464f332742b7e945053d32d726808b /src/modules/m_shun.cpp
parentFix compatibility issues between sqloper and postgres (diff)
downloadinspircd++-e57d1b19ff4823b7885eb7f4d3b37c84d2edca0e.tar.gz
inspircd++-e57d1b19ff4823b7885eb7f4d3b37c84d2edca0e.tar.bz2
inspircd++-e57d1b19ff4823b7885eb7f4d3b37c84d2edca0e.zip
Textual improvements and fixes such as typos, casing, etc. (#1612)
Diffstat (limited to 'src/modules/m_shun.cpp')
-rw-r--r--src/modules/m_shun.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_shun.cpp b/src/modules/m_shun.cpp
index b4e538624..6414b01e7 100644
--- a/src/modules/m_shun.cpp
+++ b/src/modules/m_shun.cpp
@@ -81,7 +81,7 @@ class CommandShun : public Command
}
else
{
- user->WriteNotice("*** Shun " + parameters[0] + " not found in list, try /stats H.");
+ user->WriteNotice("*** Shun " + parameters[0] + " not found on the list.");
return CMD_FAILURE;
}
}
@@ -115,7 +115,7 @@ class CommandShun : public Command
}
else
{
- ServerInstance->SNO->WriteToSnoMask('x', "%s added timed SHUN for %s to expire in %s (on %s): %s",
+ ServerInstance->SNO->WriteToSnoMask('x', "%s added timed SHUN for %s, expires in %s (on %s): %s",
user->nick.c_str(), target.c_str(), InspIRCd::DurationString(duration).c_str(),
InspIRCd::TimeString(ServerInstance->Time() + duration).c_str(), expr.c_str());
}
@@ -244,7 +244,7 @@ class ModuleShun : public Module, public Stats::EventListener
Version GetVersion() CXX11_OVERRIDE
{
- return Version("Provides the /SHUN command, which stops a user from executing all except configured commands.",VF_VENDOR|VF_COMMON);
+ return Version("Provides the SHUN command, which stops a user from executing all except configured commands", VF_VENDOR|VF_COMMON);
}
};