]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_shun.cpp
Fix various cases of broken indentation.
[user/henk/code/inspircd.git] / src / modules / m_shun.cpp
index b4e5386247e779118b6e5e52f5e0a5e5ba9ef947..6414b01e79cf2259f3951f070f50fc57269bcac0 100644 (file)
@@ -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);
        }
 };