2024-08-09 11:26:45 +02:00

8 lines
475 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

local S = minetest.get_translator("lzr_incomplete_message")
minetest.register_on_joinplayer(function(player)
minetest.chat_send_player(player:get_player_name(), minetest.colorize("#FF00FF", S("This game is incomplete!")))
minetest.chat_send_player(player:get_player_name(), S("The levels are mostly a tech demo right now, so dont expect too much."))
minetest.chat_send_player(player:get_player_name(), S("You might want to give the level editor a try through."))
end)