...mit einer Nachkommastelle
+ Bugfix für ID
This commit is contained in:
parent
55fca7a73d
commit
f4a20a972f
@ -44,7 +44,7 @@ function id:get_user(user_id, chat_id)
|
|||||||
return user_info
|
return user_info
|
||||||
end
|
end
|
||||||
|
|
||||||
function id:action(msg)
|
function id:action(msg, config, matches)
|
||||||
|
|
||||||
if matches[1] == "/id" then
|
if matches[1] == "/id" then
|
||||||
if msg.reply_to_message then
|
if msg.reply_to_message then
|
||||||
|
@ -71,8 +71,8 @@ function stats:chat_stats(chat_id)
|
|||||||
local text = ''
|
local text = ''
|
||||||
for k,user in pairs(users_info) do
|
for k,user in pairs(users_info) do
|
||||||
local msg_num = user.msgs
|
local msg_num = user.msgs
|
||||||
local percent = msg_num / all_msgs * 100
|
local percent = tostring(round(msg_num / all_msgs * 100, 1))
|
||||||
text = text..user.name..': '..comma_value(msg_num)..' <code>('..round(percent)..'%)</code>\n'
|
text = text..user.name..': '..comma_value(msg_num)..' <code>('..percent:gsub('%.', ',')..'%)</code>\n'
|
||||||
end
|
end
|
||||||
if text:isempty() then return 'Keine Stats für diesen Chat verfügbar!'end
|
if text:isempty() then return 'Keine Stats für diesen Chat verfügbar!'end
|
||||||
local text = text..'\n<b>TOTAL</b>: '..comma_value(all_msgs)
|
local text = text..'\n<b>TOTAL</b>: '..comma_value(all_msgs)
|
||||||
|
Reference in New Issue
Block a user