Fix errors in previous commits

This commit is contained in:
rubenwardy 2018-04-06 13:31:54 +01:00
parent dc6c86d98c
commit 0abd12b8a1
3 changed files with 6 additions and 11 deletions

View file

@ -70,7 +70,8 @@ minetest.register_on_joinplayer(function(player)
if #inbox > 0 then
minetest.after(10, function()
minetest.chat_send_player(player:get_player_name(),
minetest.colorize(#00FF00,"(" .. #inbox .. ") You have mail! Type /inbox to recieve"))
minetest.colorize("#00FF00",
"(" .. #inbox .. ") You have mail! Type /inbox to recieve"))
end)
end
end)