diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-05-26 22:40:45 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-06-01 23:41:42 +0200 |
commit | d16a4554002e915f4512dc8b72e4a49073931e63 (patch) | |
tree | ea6c893523fe885f053f6b45185be56611088d9f /src/commands/cmd_lusers.cpp | |
parent | ca838821e7c53da0ddaee35d9a401e3a5eaf8c8c (diff) |
Watch mode names with ModeWatchers instead of mode letters
Diffstat (limited to 'src/commands/cmd_lusers.cpp')
-rw-r--r-- | src/commands/cmd_lusers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_lusers.cpp b/src/commands/cmd_lusers.cpp index d3dde949c..c594a0e24 100644 --- a/src/commands/cmd_lusers.cpp +++ b/src/commands/cmd_lusers.cpp @@ -110,7 +110,7 @@ class InvisibleWatcher : public ModeWatcher unsigned int& invisible; public: InvisibleWatcher(Module* mod, unsigned int& Invisible) - : ModeWatcher(mod, 'i', MODETYPE_USER), invisible(Invisible) + : ModeWatcher(mod, "invisible", MODETYPE_USER), invisible(Invisible) { } |