summaryrefslogtreecommitdiff
path: root/plugins/prospector.cpp
diff options
context:
space:
mode:
authorPetr Mrázek2011-07-12 12:13:14 +0200
committerPetr Mrázek2011-07-12 12:13:14 +0200
commit3a67a4d3c7c689bad182af942da0344f4e18abad (patch)
tree90d64635d1ce1e8a835d2bea89f3c8d172f4e22b /plugins/prospector.cpp
parentaeeece5c5f6093e3d8568a7e1c54305b4f5ed197 (diff)
downloaddfhack-3a67a4d3c7c689bad182af942da0344f4e18abad.tar.gz
dfhack-3a67a4d3c7c689bad182af942da0344f4e18abad.tar.bz2
dfhack-3a67a4d3c7c689bad182af942da0344f4e18abad.tar.xz
Added linenoise library to allow line editing in the terminal.
Diffstat (limited to 'plugins/prospector.cpp')
-rw-r--r--plugins/prospector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/prospector.cpp b/plugins/prospector.cpp
index c2c4d614..639f1900 100644
--- a/plugins/prospector.cpp
+++ b/plugins/prospector.cpp
@@ -74,7 +74,7 @@ DFhackCExport const char * plugin_name ( void )
DFhackCExport command_result plugin_init ( Core * c, std::vector <PluginCommand> &commands)
{
commands.clear();
- commands.push_back(PluginCommand("prospector","Show stats of available raw resources. Use parameter 'all' to show hidden resources.",prospector));
+ commands.push_back(PluginCommand("prospect","Show stats of available raw resources. Use parameter 'all' to show hidden resources.",prospector));
return CR_OK;
}