summaryrefslogtreecommitdiff
path: root/src/modules/m_helpop.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-08 18:59:13 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-08 18:59:13 +0000
commitfea1a27cb96a114f698eedcf90401b78406108fb (patch)
tree194649decb5d88184149307571bba6873537853d /src/modules/m_helpop.cpp
parenta7543c881be4c900b68a54714de7c1e677acbb09 (diff)
WHEEEEE!!!!!
All of: Write(), WriteTo(), WriteFrom(), WriteServ() are now methods of userrec. Write_NoFormat(), WriteTo_NoFormat(), WriteFrom_NoFormat(), WriteServ_NoFormat() are now std::string-taking overloaded methods of the functions above All modules updated to use new syntax, my fingers hurt :( git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4798 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_helpop.cpp')
-rw-r--r--src/modules/m_helpop.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_helpop.cpp b/src/modules/m_helpop.cpp
index e503952d6..5680a239b 100644
--- a/src/modules/m_helpop.cpp
+++ b/src/modules/m_helpop.cpp
@@ -99,7 +99,7 @@ class cmd_helpop : public command_t
if(output != "")
{
- Srv->SendTo(NULL,user,"290 "+std::string(user->nick)+" :"+output);
+ user->WriteServ("290 "+std::string(user->nick)+" :"+output);
}
}
}
@@ -117,7 +117,7 @@ class cmd_helpop : public command_t
output = helpop->ReadValue("nohelpo", std::string(a), 0);
if (output != "")
{
- Srv->SendTo(NULL,user,"290 "+std::string(user->nick)+" :"+output);
+ user->WriteServ("290 "+std::string(user->nick)+" :"+output);
}
}
// Forward.
@@ -154,7 +154,7 @@ bool do_helpop(const char** parameters, int pcnt, userrec *src)
output = helpop->ReadValue(search, a, 0);
if (output != "")
{
- Srv->SendTo(NULL,src,"290 "+std::string(src->nick)+" :"+output);
+ src->WriteServ("290 "+std::string(src->nick)+" :"+output);
nlines++;
}
}
@@ -249,7 +249,7 @@ class ModuleHelpop : public Module
{
if (dst->IsModeSet('h'))
{
- Srv->SendTo(NULL,src,"310 "+std::string(src->nick)+" "+std::string(dst->nick)+" :is available for help.");
+ src->WriteServ("310 "+std::string(src->nick)+" "+std::string(dst->nick)+" :is available for help.");
}
}