diff --git a/docs/plugins/automelt.rst b/docs/plugins/automelt.rst index 73f8ba502..749aac28a 100644 --- a/docs/plugins/automelt.rst +++ b/docs/plugins/automelt.rst @@ -1,5 +1,11 @@ automelt ======== -When automelt is enabled for a stockpile, any meltable items placed -in it will be designated to be melted. -This plugin adds an option to the :kbd:`q` menu when `enabled `. + +Quickly designate items to be melted. When `enabled `, this plugin adds +an option to the :kbd:`q` menu for stockpiles. When the ``automelt`` option is +selected for the stockpile, any items placed in the stockpile will automatically +be designated to be melted. + +Usage:: + + enable automelt diff --git a/plugins/automelt.cpp b/plugins/automelt.cpp index 852b324d6..e4033ed63 100644 --- a/plugins/automelt.cpp +++ b/plugins/automelt.cpp @@ -297,9 +297,9 @@ DFhackCExport command_result plugin_enable(color_ostream &out, bool enable) DFhackCExport command_result plugin_init ( color_ostream &out, std::vector &commands) { commands.push_back( - PluginCommand( - "automelt", "Automatically melt metal items in marked stockpiles.", - automelt_cmd, false, "")); + PluginCommand("automelt", + "Automatically melt metal items in marked stockpiles.", + automelt_cmd)); return CR_OK; }