diff options
author | Adam <Adam@anope.org> | 2014-12-10 02:09:51 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-12-10 02:09:51 -0500 |
commit | 50acad5ce451b44b469890fe46ce14c7ffd031ca (patch) | |
tree | 231101b9e475dacd58b4d03d1a69df9fe7a82f28 /modules/fantasy.cpp | |
parent | 3e5a5e1c669f6027b897f7358d45f92e1552f746 (diff) |
Unconst these config Get<Anope::string> calls as it makes no sense
Diffstat (limited to 'modules/fantasy.cpp')
-rw-r--r-- | modules/fantasy.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/fantasy.cpp b/modules/fantasy.cpp index 4122987d2..5602522ff 100644 --- a/modules/fantasy.cpp +++ b/modules/fantasy.cpp @@ -77,7 +77,7 @@ class CommandBSSetFantasy : public Command "Note that users wanting to use fantaisist\n" "commands MUST have enough access for both\n" "the FANTASIA and the command they are executing."), - Config->GetModule(this->owner)->Get<const Anope::string>("fantasycharacter", "!").c_str()); + Config->GetModule(this->owner)->Get<Anope::string>("fantasycharacter", "!").c_str()); return true; } }; @@ -117,7 +117,7 @@ class Fantasy : public Module if (!msg.find(c->ci->GetBot()->nick)) params.erase(params.begin()); - else if (!msg.find_first_of(Config->GetModule(this)->Get<const Anope::string>("fantasycharacter", "!"))) + else if (!msg.find_first_of(Config->GetModule(this)->Get<Anope::string>("fantasycharacter", "!"))) params[0].erase(params[0].begin()); else return; |