diff options
| author | 2010-02-28 00:35:37 +0000 | |
|---|---|---|
| committer | 2010-08-03 17:32:38 -0400 | |
| commit | ed62d66d00eb7cbc976d56d525e8beb4aa52559d (patch) | |
| tree | 8e7e052b4b790516f18a51ec453521f3c46883c8 /src/modules/m_customprefix.cpp | |
| parent | Change PermissionCheck to ModResult, allow flags to grant an ACL directly in ... (diff) | |
Fix m_customprefix trying to add the first tag twice
Diffstat (limited to 'src/modules/m_customprefix.cpp')
| -rw-r--r-- | src/modules/m_customprefix.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/m_customprefix.cpp b/src/modules/m_customprefix.cpp index 6876452dc..b88fdca15 100644 --- a/src/modules/m_customprefix.cpp +++ b/src/modules/m_customprefix.cpp @@ -67,6 +67,7 @@ class ModuleCustomPrefix : public Module while (tags.first != tags.second) { ConfigTag* tag = tags.first->second; + tags.first++; CustomPrefixMode* mh = new CustomPrefixMode(this, tag); modes.push_back(mh); if (mh->rank <= 0) |
