diff options
| author | 2008-02-13 10:39:25 +0000 | |
|---|---|---|
| committer | 2008-02-13 10:39:25 +0000 | |
| commit | 449bbb6e04f73685341fc22acb4b579794bd56ac (patch) | |
| tree | cae19edfde7f61ab54da95d3e232a048b52f0a3a /src/modules/m_taxonomy.cpp | |
| parent | Support \* in silence flags, do the same thing as a(ll) flag. (diff) | |
Slight API tweak. Change Command to take char * instead of char in it's constructor, this avoids confusion/generates a compile error if someone mixes up flags with number of params, instead of working but not working as expected in a weird manner.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8918 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_taxonomy.cpp')
| -rw-r--r-- | src/modules/m_taxonomy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_taxonomy.cpp b/src/modules/m_taxonomy.cpp index 104d45cdd..1490d90ef 100644 --- a/src/modules/m_taxonomy.cpp +++ b/src/modules/m_taxonomy.cpp @@ -23,7 +23,7 @@ class CommandTaxonomy : public Command bool& claimed; public: /* Command 'taxonomy', takes no parameters and needs no special modes */ - CommandTaxonomy (InspIRCd* Instance, Module* maker, bool &claim) : Command(Instance,"TAXONOMY", 'o', 1), Creator(maker), claimed(claim) + CommandTaxonomy (InspIRCd* Instance, Module* maker, bool &claim) : Command(Instance,"TAXONOMY", "o", 1), Creator(maker), claimed(claim) { this->source = "m_taxonomy.so"; syntax = "<nickname>"; |
