diff --git a/docs/plugins/flows.rst b/docs/plugins/flows.rst index 3df451195..354b0078e 100644 --- a/docs/plugins/flows.rst +++ b/docs/plugins/flows.rst @@ -1,5 +1,11 @@ flows ===== -A tool for checking how many tiles contain flowing liquids. If you suspect that -your magma sea leaks into HFS, you can use this tool to be sure without -revealing the map. +Tags: +:dfhack-keybind:`flows` + +Counts map blocks with flowing liquids.. If you suspect that your magma sea +leaks into HFS, you can use this tool to be sure without revealing the map. + +Usage:: + + flows diff --git a/plugins/flows.cpp b/plugins/flows.cpp index 070776b10..a17554cb9 100644 --- a/plugins/flows.cpp +++ b/plugins/flows.cpp @@ -59,7 +59,8 @@ command_result df_flows (color_ostream &out, vector & parameters) DFhackCExport command_result plugin_init ( color_ostream &out, std::vector &commands) { - commands.push_back(PluginCommand("flows", + commands.push_back(PluginCommand( + "flows", "Counts map blocks with flowing liquids.", df_flows)); return CR_OK;