diff options
author | Auke Kok <auke-jan.h.kok@intel.com> | 2015-01-15 23:05:10 -0800 |
---|---|---|
committer | Auke Kok <auke-jan.h.kok@intel.com> | 2015-01-15 23:05:10 -0800 |
commit | 7eea34cb3e9098402a45366b4ceee9dfae4ad796 (patch) | |
tree | 1b49caf62794e8b5a622f525166d999ef6cd4e03 /init.lua | |
parent | 919e555e1a9cc22cca0d611c78a7ac33d8a61a04 (diff) |
Display operation params with stats
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -467,6 +467,7 @@ local function sedcmd(name, param) local paramlist = string.split(param, " ") if paramlist[1] == "stats" then local output = "Sedimentology mod statistics:" .. + "\nradius: " .. radius .. ", blocks: " .. count .. "\nconsidered: " .. stat_considered .. "\ndisplaced: " .. stat_displaced .. "\ndegraded: " .. stat_degraded @@ -478,7 +479,6 @@ local function sedcmd(name, param) else return true, "Blocks: " .. count end - end return true, "Command completed succesfully" end |