diff options
author | Adam <Adam@anope.org> | 2011-08-10 15:47:02 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-08-10 15:47:02 -0400 |
commit | 25d422d32bd72a812b52ad27180b033c75b1ddc6 (patch) | |
tree | 5d1a81e97443829c492a9e29a886406b2a450508 /modules/commands/cs_flags.cpp | |
parent | 697bc8d8e8849445da46e18a6cd9681a41b49195 (diff) |
Fixed flags +* and -*
Diffstat (limited to 'modules/commands/cs_flags.cpp')
-rw-r--r-- | modules/commands/cs_flags.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/cs_flags.cpp b/modules/commands/cs_flags.cpp index 07a441141..cc88c330d 100644 --- a/modules/commands/cs_flags.cpp +++ b/modules/commands/cs_flags.cpp @@ -197,9 +197,9 @@ class CommandCSFlags : public Command continue; } if (add == 1) - current_flags.insert(f); + current_flags.insert(l.default_char); else if (add == 0) - current_flags.erase(f); + current_flags.erase(l.default_char); } break; default: |