diff options
author | Bardur Arantsson <bardur@scientician.net> | 2016-10-05 18:45:08 +0200 |
---|---|---|
committer | Bardur Arantsson <bardur@scientician.net> | 2016-10-05 18:49:37 +0200 |
commit | 765e1a3dc7abce3a849b8d1f124ada7a6984154a (patch) | |
tree | 0a4530d2091f05b70638f2eb833ae9b7238e4927 /src/help.cc | |
parent | 5869c5622e4345ffd50e0713d188f2d283b61caa (diff) |
Move s_{info,descriptors} to Game/GameEdtiData
Diffstat (limited to 'src/help.cc')
-rw-r--r-- | src/help.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/help.cc b/src/help.cc index b74e6584..e5014b45 100644 --- a/src/help.cc +++ b/src/help.cc @@ -729,9 +729,9 @@ void help_god(cptr god) } } -void help_skill(cptr skill) +void help_skill(const std::__cxx11::string &skill) { - show_context_help(find_context_help(skill_table, skill)); + show_context_help(find_context_help(skill_table, skill.c_str())); } void help_ability(std::string const &ability) |