diff --git a/Lua/messages.lua b/Lua/messages.lua index 6d9666e..07602df 100644 --- a/Lua/messages.lua +++ b/Lua/messages.lua @@ -4,7 +4,7 @@ function T(x, y, color, pos, s, ...) if #{...} > 0 then s = s:format(...) end - gui.text(10*x + 2, 16*y + 4, s, nil, color or "white", pos or "bottomright") + gui.text(10*x + 2, 16*y + 4, s, color or "white", nil, pos or "bottomright") end function T_BR(x, y, color, ...) T(x, y, color, "bottomright", ...) end