[duetto-meika] i'm dumb

This commit is contained in:
odrling 2019-08-02 00:16:53 +02:00
parent b4209405d3
commit 7616e4111a

View file

@ -27,16 +27,16 @@ function duetto(subs, sel)
-- build the tags to use the new style
style_string = "{"
if current_style.color1 ~= style.color1 then
style_string = style_string .. "\\c1" .. style.color1
style_string = style_string .. "\\c" .. style.color1
end
if current_style.color2 ~= style.color2 then
style_string = style_string .. "\\c2" .. style.color2
style_string = style_string .. "\\2c" .. style.color2
end
if current_style.color3 ~= style.color3 then
style_string = style_string .. "\\c3" .. style.color3
style_string = style_string .. "\\3c" .. style.color3
end
if current_style.color4 ~= style.color4 then
style_string = style_string .. "\\c4" .. style.color4
style_string = style_string .. "\\4c" .. style.color4
end
style_string = style_string .. "}"