diff options
| author | 2007-10-15 20:59:05 +0000 | |
|---|---|---|
| committer | 2007-10-15 20:59:05 +0000 | |
| commit | b57c7f4e466f72fdd2ac3deca42caa1ea7748338 (patch) | |
| tree | 3cbfe66354be62ddd22d7614e9d6116f465e807b /src/modules/m_opermotd.cpp | |
| parent | class command_t -> class Command. Whey :D (diff) | |
In the grand tradition of huge fucking commits:
- chanrec -> Channel
- userrec -> User
Enjoy.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8204 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_opermotd.cpp')
| -rw-r--r-- | src/modules/m_opermotd.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_opermotd.cpp b/src/modules/m_opermotd.cpp index 2ae4c30b5..ef3ae98c4 100644 --- a/src/modules/m_opermotd.cpp +++ b/src/modules/m_opermotd.cpp @@ -17,7 +17,7 @@ static FileReader* opermotd; -CmdResult ShowOperMOTD(userrec* user) +CmdResult ShowOperMOTD(User* user) { if(!opermotd->FileSize()) { @@ -49,7 +49,7 @@ class cmd_opermotd : public Command syntax = "[<servername>]"; } - CmdResult Handle (const char** parameters, int pcnt, userrec* user) + CmdResult Handle (const char** parameters, int pcnt, User* user) { return ShowOperMOTD(user); } @@ -99,12 +99,12 @@ class ModuleOpermotd : public Module List[I_OnRehash] = List[I_OnOper] = 1; } - virtual void OnOper(userrec* user, const std::string &opertype) + virtual void OnOper(User* user, const std::string &opertype) { ShowOperMOTD(user); } - virtual void OnRehash(userrec* user, const std::string ¶meter) + virtual void OnRehash(User* user, const std::string ¶meter) { LoadOperMOTD(); } |
