diff options
| author | 2021-06-01 01:48:14 +0100 | |
|---|---|---|
| committer | 2021-06-01 02:36:13 +0100 | |
| commit | 10e9e9a5be47ff0000d459d9a71bc6b11292898f (patch) | |
| tree | bd7df96efc2fd69880c5a5db220ae26b8f4c0324 /src/modules/m_auditorium.cpp | |
| parent | Merge branch 'insp3' into master. (diff) | |
Rename Simple{Channel,User}ModeHandler to match other mode handlers.
Diffstat (limited to 'src/modules/m_auditorium.cpp')
| -rw-r--r-- | src/modules/m_auditorium.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/modules/m_auditorium.cpp b/src/modules/m_auditorium.cpp index cbaf5ddcc..dd9cb4ffb 100644 --- a/src/modules/m_auditorium.cpp +++ b/src/modules/m_auditorium.cpp @@ -28,10 +28,12 @@ #include "modules/names.h" #include "modules/who.h" -class AuditoriumMode : public SimpleChannelModeHandler +class AuditoriumMode final + : public SimpleChannelMode { public: - AuditoriumMode(Module* Creator) : SimpleChannelModeHandler(Creator, "auditorium", 'u') + AuditoriumMode(Module* Creator) + : SimpleChannelMode(Creator, "auditorium", 'u') { ranktoset = ranktounset = OP_VALUE; } |
