diff --git a/docs/plugins/deramp.rst b/docs/plugins/deramp.rst index a6b944381..7489e506e 100644 --- a/docs/plugins/deramp.rst +++ b/docs/plugins/deramp.rst @@ -1,6 +1,13 @@ deramp ====== -Removes all ramps designated for removal from the map. This is useful for -replicating the old channel digging designation. It also removes any and -all 'down ramps' that can remain after a cave-in (you don't have to designate -anything for that to happen). + +Tags: +:dfhack-keybind:`deramp` + +:index:`Removes all ramps designated for removal from the map. +` It also +removes any "floating" down ramps that can remain after a cave-in. + +Usage:: + + deramp diff --git a/plugins/deramp.cpp b/plugins/deramp.cpp index 62679cae0..1c397242b 100644 --- a/plugins/deramp.cpp +++ b/plugins/deramp.cpp @@ -109,13 +109,11 @@ command_result df_deramp (color_ostream &out, vector & parameters) DFhackCExport command_result plugin_init ( color_ostream &out, std::vector &commands) { - commands.push_back(PluginCommand( - "deramp", "Replace all ramps marked for removal with floors.", - df_deramp, false, - " If there are any ramps designated for removal, they will be instantly\n" - " removed. Any ramps that don't have their counterpart will also be removed\n" - " (fixes bugs with caveins)\n" - )); + commands.push_back( + PluginCommand( + "deramp", + "Removes all ramps designated for removal from the map.", + df_deramp)); return CR_OK; }