Skip to content
Snippets Groups Projects
Commit 9b80265c authored by dg's avatar dg
Browse files

Timed died/lifes left are shown on textual chardump

git-svn-id: http://svn.net-core.org/repos/t-engine4@6716 51575b47-30f0-44d4-a5cc-537603b46e54
parent 71129e5c
No related branches found
No related tags found
No related merge requests found
......@@ -978,6 +978,13 @@ function _M:dump()
nnl(("%-32s"):format(makelabel("Gold", ("%.2f"):format(player.money))))
nl(("CON: %d"):format(player:getCon()))
if player.died_times then
nl(("Times died : %d"):format(#player.died_times))
end
if player.easy_mode_lifes then
nl(("Lifes left : %d"):format(player.easy_mode_lifes))
end
-- All weapons in main hands
local strings = {}
for i = 1, 6 do strings[i]="" end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment