diff options
| author | 2021-03-17 06:07:41 +0000 | |
|---|---|---|
| committer | 2021-03-17 06:07:41 +0000 | |
| commit | e2f8e75ab86c484e095ea5723f68a96698abbde2 (patch) | |
| tree | 2a3e41f51536a8eabb1b6b3c2a5fb47bb1346fdb /src/modules/m_swhois.cpp | |
| parent | Pascalize Get in extension item classes. (diff) | |
Pascalize Set in extension item classes.
Diffstat (limited to 'src/modules/m_swhois.cpp')
| -rw-r--r-- | src/modules/m_swhois.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_swhois.cpp b/src/modules/m_swhois.cpp index 3f441c07d..41e2f2885 100644 --- a/src/modules/m_swhois.cpp +++ b/src/modules/m_swhois.cpp @@ -78,7 +78,7 @@ class CommandSwhois : public Command if (parameters[1].empty()) swhois.unset(dest); else - swhois.set(dest, parameters[1]); + swhois.Set(dest, parameters[1]); /* Bug #376 - feature request - * To cut down on the amount of commands services etc have to recognise, this only sends METADATA across the network now @@ -136,8 +136,8 @@ class ModuleSWhois if (!swhois.length()) return; - cmd.operblock.set(user, 1); - cmd.swhois.set(user, swhois); + cmd.operblock.Set(user, 1); + cmd.swhois.Set(user, swhois); ServerInstance->PI->SendMetaData(user, "swhois", swhois); } |
