update docs for nestboxes

develop
myk002 2022-07-28 03:25:00 -07:00
parent f68b58c460
commit 88648284b0
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
2 changed files with 13 additions and 9 deletions

@ -1,5 +1,12 @@
nestboxes
=========
Tags:
Automatically scan for and forbid fertile eggs incubating in a nestbox.
Toggle status with `enable` or `disable <disable>`.
Protect fertile eggs incubating in a nestbox. This plugin will automatically
scan for and forbid fertile eggs incubating in a nestbox so that dwarves won't
come to collect them for eating. The eggs will hatch normally, even when
forbidden.
Usage::
enable nestboxes

@ -69,13 +69,10 @@ DFhackCExport command_result plugin_init (color_ostream &out, std::vector <Plugi
{
if (world && ui) {
commands.push_back(
PluginCommand("nestboxes", "Automatically scan for and forbid fertile eggs incubating in a nestbox.",
nestboxes, false,
"To enable: nestboxes enable\n"
"To disable: nestboxes disable\n"
"There is no other configuration.\n"
)
);
PluginCommand(
"nestboxes",
"Protect fertile eggs incubating in a nestbox.",
nestboxes));
}
return CR_OK;
}