update docs for showmood

develop
myk002 2022-07-31 13:28:41 -07:00
parent edb7bd3168
commit 8f7a23ee4d
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
2 changed files with 12 additions and 3 deletions

@ -1,3 +1,10 @@
showmood
========
Shows all items needed for the currently active strange mood.
Tags:
:dfhack-keybind:`showmood`
Shows all items needed for the active strange mood.
Usage::
showmood

@ -297,8 +297,10 @@ command_result df_showmood (color_ostream &out, vector <string> & parameters)
DFhackCExport command_result plugin_init (color_ostream &out, std::vector<PluginCommand> &commands)
{
commands.push_back(PluginCommand("showmood", "Shows items needed for current strange mood.", df_showmood, false,
"Run this command without any parameters to display information on the currently active Strange Mood."));
commands.push_back(PluginCommand(
"showmood",
"Shows all items needed for active strange mood.",
df_showmood));
return CR_OK;
}