From bafaa7a1af2f98972bc5d63b078ecf934d3bd90c Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Fri, 11 Dec 2015 00:44:18 -0800 Subject: [PATCH] update for new gui.text behaviour --- Lua/messages.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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