Change color to right angled brackets

master
rubenwardy 2018-01-02 20:56:04 +00:00
parent 8ffdefa908
commit 40c84728d4
1 changed files with 3 additions and 1 deletions

View File

@ -369,7 +369,9 @@ if minetest.global_exists("irc") then
color = ""
clear = ""
end
return ("%s%s%s <%s> %s"):format(color, tname, clear, name, message)
local abrace = color .. "<" .. clear
local bbrace = color .. ">" .. clear
return ("%s%s%s %s"):format(abrace, name, bbrace, message)
end
end