Fixed Color Tags

This commit is contained in:
Cooldude2606
2019-04-15 21:18:09 +01:00
parent 40fc85bb7c
commit 4e643954be
2 changed files with 5 additions and 5 deletions

View File

@@ -222,7 +222,7 @@ function Roles.debug()
local role = Roles.config.roles[role_name]
local color = role.custom_color or Colours.white
color = string.format('[color=%d,%d,%d]',color.r,color.g,color.b)
output = output..string.format('\n%s %s) %s',color,index,serpent.line(role))
output = output..string.format('\n%s %s) %s[/color]',color,index,serpent.line(role))
end
return output
end