From b9dd4067bf53f04bfee7ec63e03b24d5e478eeff Mon Sep 17 00:00:00 2001 From: Akamaru Date: Thu, 23 Apr 2015 17:29:42 +0200 Subject: [PATCH] Don't show the last name in stats --- plugins/stats.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/stats.lua b/plugins/stats.lua index 1527330..3ccc9f7 100644 --- a/plugins/stats.lua +++ b/plugins/stats.lua @@ -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)