summaryrefslogtreecommitdiff
path: root/plugins/changeitem.cpp
diff options
context:
space:
mode:
authorRobert Heinrich2012-03-29 17:14:41 +0200
committerRobert Heinrich2012-03-29 17:14:41 +0200
commite249ef1377ba99388ac967a4f76dda4b863d50be (patch)
tree6a2f2ef511dbea62a0684de06b9a10e42b596e86 /plugins/changeitem.cpp
parentcc54d5dfa9bd1430a0a4d38fef5370627880d3c8 (diff)
downloaddfhack-e249ef1377ba99388ac967a4f76dda4b863d50be.tar.gz
dfhack-e249ef1377ba99388ac967a4f76dda4b863d50be.tar.bz2
dfhack-e249ef1377ba99388ac967a4f76dda4b863d50be.tar.xz
minor fix (forgot a line break in helpstring)
Diffstat (limited to 'plugins/changeitem.cpp')
-rw-r--r--plugins/changeitem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/changeitem.cpp b/plugins/changeitem.cpp
index b3fb2deb..dae0d4a6 100644
--- a/plugins/changeitem.cpp
+++ b/plugins/changeitem.cpp
@@ -53,7 +53,7 @@ const string changeitem_help =
" quality, q - change base quality. must be followed by number (0-5)\n"
" force - ignore subtypes, force change to new material.\n"
"Example:\n"
- " changeitem m INORGANIC:GRANITE here"
+ " changeitem m INORGANIC:GRANITE here\n"
" change material of all items under the cursor to granite\n"
" changeitem q 5\n"
" change currently selected item to masterpiece quality\n";
@@ -61,7 +61,7 @@ const string changeitem_help =
DFhackCExport command_result plugin_init ( color_ostream &out, vector <PluginCommand> &commands)
{
- commands.clear();
+ //commands.clear();
commands.push_back(PluginCommand(
"changeitem", "Change item attributes (material, quality).",
df_changeitem, false,