From 504ca91ef65406781468a9652f8d17e8453bcb77 Mon Sep 17 00:00:00 2001 From: Akamaru Date: Thu, 13 Oct 2016 15:27:05 +0200 Subject: [PATCH] get_txt.lua: Text als Code --- miku/plugins/get_txt.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/miku/plugins/get_txt.lua b/miku/plugins/get_txt.lua index 5972544..18b9e96 100644 --- a/miku/plugins/get_txt.lua +++ b/miku/plugins/get_txt.lua @@ -16,11 +16,11 @@ function get_txt:action(msg, config, matches) return end if string.len(res) > 500 then - result = string.sub(res, 1, 500)..'...\n(Text gekürzt, da länger als 500 Zeichen.)' + result = '
'..string.sub(res, 1, 500)..'...
\n(Text gekürzt, da länger als 500 Zeichen.)' else - result = res + result = '
'..res..'
' end - utilities.send_reply(msg, result) + utilities.send_reply(msg, result, 'HTML') end return get_txt \ No newline at end of file