update docs for tubefill

develop
myk002 2022-07-31 13:31:40 -07:00
parent a6bdd9e3dc
commit a5a57a8631
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
2 changed files with 13 additions and 9 deletions

@ -1,11 +1,14 @@
tubefill tubefill
======== ========
Fills all the adamantine veins again. Veins that were hollow will be left Tags:
alone. :dfhack-keybind:`tubefill`
Options: Replentishes mined-out adamantine. Veins that were hollow will be left alone.
:hollow: fill in naturally hollow veins too Usage::
Beware that filling in hollow veins will trigger a demon invasion on top of tubefill [hollow]
your miner when you dig into the region that used to be hollow.
Specify ``hollow`` to fill in naturally hollow veins too, but be aware that this
will trigger a demon invasion on top of your miner when you dig into the region
that used to be hollow. You have been warned!

@ -40,9 +40,10 @@ command_result tubefill(color_ostream &out, std::vector<std::string> & params);
DFhackCExport command_result plugin_init ( color_ostream &out, std::vector <PluginCommand> &commands) DFhackCExport command_result plugin_init ( color_ostream &out, std::vector <PluginCommand> &commands)
{ {
commands.push_back(PluginCommand("tubefill","Fill in all the adamantine tubes again.",tubefill, false, commands.push_back(PluginCommand(
"Replenishes mined out adamantine but does not fill hollow adamantine tubes.\n" "tubefill",
"Specify 'hollow' to fill hollow tubes, but beware glitchy HFS spawns.\n")); "Replentishes mined-out adamantine.",
tubefill));
return CR_OK; return CR_OK;
} }