1
0
Fork 0
mirror of https://github.com/notwa/mm synced 2024-05-18 05:23:22 -07:00

update for new gui.text behaviour

This commit is contained in:
Connor Olding 2015-12-11 00:44:18 -08:00
parent a957617933
commit bafaa7a1af

View File

@ -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