Don't show the last name in stats

This commit is contained in:
Akamaru 2015-04-23 17:29:42 +02:00
parent 358c1979e5
commit b9dd4067bf

View File

@ -82,7 +82,8 @@ local function get_stats_status( msg )
if user.last_name == nil then
text = text..user.name..": "..user.msg_num.."\n"
else
text = text..user.name.." "..user.last_name..": "..user.msg_num.."\n"
--text = text..user.name.." "..user.last_name..": "..user.msg_num.."\n"
text = text..user.name..": "..user.msg_num.."\n"
end
end
print("usuarios: "..text)