diff options
author | Adam <Adam@drink-coca-cola.info> | 2010-04-24 17:18:25 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-06-18 20:55:38 -0400 |
commit | fa82890696c498f38643df7df6891434c91c9269 (patch) | |
tree | 4b28359e75c29825586e6b2394e5334e43ea074b /src/command.cpp | |
parent | 2ba89de64d3b755f731f202dd97c48d256db8031 (diff) |
Moved Commands stuff to its own file and changed Command::name to be ci::string - Will be used after hashing system is rewritten
Diffstat (limited to 'src/command.cpp')
-rw-r--r-- | src/command.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command.cpp b/src/command.cpp index ea66a7261..fc745fe46 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -10,7 +10,7 @@ #include "services.h" #include "modules.h" -Command::Command(const std::string &sname, size_t min_params, size_t max_params, const std::string &spermission) : MaxParams(max_params), MinParams(min_params), name(sname), permission(spermission) +Command::Command(const ci::string &sname, size_t min_params, size_t max_params, const std::string &spermission) : MaxParams(max_params), MinParams(min_params), name(sname), permission(spermission) { this->core = 0; this->mod_name = NULL; |