Fixed :trace typo.

git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@4328 127b21dd-08f5-0310-b4b7-95ae10353056
This commit is contained in:
Jens Ayton 2011-02-12 12:27:39 +00:00
parent 19a0cbe07c
commit 1d91108c8b

View File

@ -116,7 +116,7 @@
"time" = "eval(\"this._profileFunc = function() { \" + PARAM + \" };\"); console.profile(this._profileFunc, this); delete this._profileFunc;";
// ":trace <expression>" -- trace a JavaScript expression.
"trace" = "eval(\"this._traceFunc = function() { \" + PARAM + \" };\"); console.trace(this._traceFunc, this); delete this._profileFunc;";
"trace" = "eval(\"this._traceFunc = function() { \" + PARAM + \" };\"); console.trace(this._traceFunc, this); delete this._traceFunc;";
// For calling old-school scripting methods (on player), as in ":: gui_screen_string", or ":: playSound: boop.ogg"
":" = "performLegacyCommand(PARAM)";