diff options
| author | 2022-12-01 05:14:58 +0000 | |
|---|---|---|
| committer | 2022-12-01 05:25:01 +0000 | |
| commit | 45e56e5ee1bdb9e169be957e21a4f7b536e417ff (patch) | |
| tree | 72642028744c278ca476e656933716ac9f7357b8 /src/modules/m_cban.cpp | |
| parent | Merge branch 'insp3' into master. (diff) | |
Yet more stylistic fixes.
Diffstat (limited to 'src/modules/m_cban.cpp')
| -rw-r--r-- | src/modules/m_cban.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/modules/m_cban.cpp b/src/modules/m_cban.cpp index 437cef2b5..d83b5fbf5 100644 --- a/src/modules/m_cban.cpp +++ b/src/modules/m_cban.cpp @@ -75,7 +75,10 @@ class CBanFactory final : public XLineFactory { public: - CBanFactory() : XLineFactory("CBAN") { } + CBanFactory() + : XLineFactory("CBAN") + { + } XLine* Generate(time_t set_time, unsigned long duration, const std::string& source, const std::string& reason, const std::string& xline_specific_mask) override { @@ -92,7 +95,8 @@ class CommandCBan final : public Command { public: - CommandCBan(Module* Creator) : Command(Creator, "CBAN", 1, 3) + CommandCBan(Module* Creator) + : Command(Creator, "CBAN", 1, 3) { access_needed = CmdAccess::OPERATOR; syntax = { "<channelmask> [<duration> [:<reason>]]" }; |
