update docs for fixveins

develop
myk002 2022-07-25 10:54:11 -07:00
parent 9c0bd6bd70
commit ea3dfe399e
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
2 changed files with 12 additions and 5 deletions

@ -1,5 +1,11 @@
fixveins
========
Removes invalid references to mineral inclusions and restores missing ones.
Use this if you broke your embark with tools like `tiletypes`, or if you
accidentally placed a construction on top of a valuable mineral floor.
Tags:
:dfhack-keybind:`fixveins`
Restore missing mineral inclusions. This tool can also remove invalid references
to mineral inclusions if you broke your embark with tools like `tiletypes`.
Usage::
fixveins

@ -103,8 +103,9 @@ command_result df_fixveins (color_ostream &out, vector <string> & parameters)
DFhackCExport command_result plugin_init ( color_ostream &out, std::vector <PluginCommand> &commands)
{
commands.push_back(PluginCommand("fixveins",
"Remove invalid references to mineral inclusions and restore missing ones.",
commands.push_back(PluginCommand(
"fixveins",
"Restore missing mineral inclusions.",
df_fixveins));
return CR_OK;
}