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:45:08 +0200 |
commit | 3cdeb22086fc177165acb2d7b6530ccc230ec8e6 (patch) | |
tree | 3a026b45b8cb1af24aad41bf242a4e8b5b555772 /src/help.cc | |
parent | bea14b1db03fcd62d7dfd6633a0802f222792311 (diff) |
Move class_info to GameEditData
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 f8d75e79..55051bfa 100644 --- a/src/help.cc +++ b/src/help.cc @@ -713,9 +713,9 @@ void help_subrace(cptr subrace) show_context_help(find_context_help(subrace_table, subrace)); } -void help_class(cptr klass) +void help_class(std::string const &klass) { - show_context_help(find_context_help(class_table, klass)); + show_context_help(find_context_help(class_table, klass.c_str())); } void help_god(cptr god) |