Stats without user id

This commit is contained in:
Akamaru 2015-04-15 18:44:42 +02:00
parent 4f9fd9389e
commit cc6b4d76f4

View File

@ -80,9 +80,9 @@ local function get_stats_status( msg )
user_id = user.user_id or ''
print(">> ", id, user.name)
if user.last_name == nil then
text = text..user.name.." ["..user_id.."]: "..user.msg_num.."\n"
text = text..user.name..": "..user.msg_num.."\n"
else
text = text..user.name.." "..user.last_name.." ["..user_id.."]: "..user.msg_num.."\n"
text = text..user.name.." "..user.last_name..": "..user.msg_num.."\n"
end
end
print("usuarios: "..text)