FIX shout
This commit is contained in:
parent
ffccdd8667
commit
99e7449395
@ -25,11 +25,11 @@ local action = function(msg)
|
|||||||
input = input:upper()
|
input = input:upper()
|
||||||
local output = ''
|
local output = ''
|
||||||
local inc = 0
|
local inc = 0
|
||||||
for match in input:gmatch('.') do
|
for match in input:gmatch('([%z\1-\127\194-\244][\128-\191]*)') do
|
||||||
output = output .. match .. ' '
|
output = output .. match .. ' '
|
||||||
end
|
end
|
||||||
output = output .. '\n'
|
output = output .. '\n'
|
||||||
for match in input:sub(2):gmatch('.') do
|
for match in input:sub(2):gmatch('([%z\1-\127\194-\244][\128-\191]*)') do
|
||||||
local spacing = ''
|
local spacing = ''
|
||||||
for i = 1, inc do
|
for i = 1, inc do
|
||||||
spacing = spacing .. ' '
|
spacing = spacing .. ' '
|
||||||
|
Reference in New Issue
Block a user