From 755c4c70670e4b353bc9968368530a23d1722fa3 Mon Sep 17 00:00:00 2001 From: Milan* Date: Mon, 11 Sep 2017 22:57:47 +0200 Subject: [PATCH] update hellochat --- mods/hellochat/init.lua | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/mods/hellochat/init.lua b/mods/hellochat/init.lua index 032a0ede..49b7899d 100644 --- a/mods/hellochat/init.lua +++ b/mods/hellochat/init.lua @@ -5,10 +5,8 @@ minetest.register_on_joinplayer(function(player) -- How ugly, multible sending instead multiline. -- https://github.com/minetest/minetest/pull/4546 minetest.chat_send_player(player, core.colorize(color, "# Illuna: Hey friend, it looks like you're new here, awesome to meet ya!")) - minetest.chat_send_player(player, core.colorize(color, "# Illuna: You just joined our VIP world, so you need to do a few steps in order to play here. :-)")) - minetest.chat_send_player(player, core.colorize(color, "# Illuna: 1. Read our rules (how boring) at https://illuna.rocks/rules")) - minetest.chat_send_player(player, core.colorize(color, "# Illuna: 2. Join our community at https://meet.illuna.rocks and introduce yourself.")) - minetest.chat_send_player(player, core.colorize(color, "# Illuna: This is our way to protect the players, you'll love how secure this world is. ;-)")) - minetest.chat_send_player(player, core.colorize("#C3E9FF", "# Illuna: Or you just try our public servers at port 30001 and 30002... .")) + minetest.chat_send_player(player, core.colorize(color, "# Illuna: You just joined our VIP world, good choice!")) + minetest.chat_send_player(player, core.colorize(color, "# Illuna: In order to play here, you must prove yourself on our public server (illuna.rocks:30002).")) + minetest.chat_send_player(player, core.colorize(color, "# Illuna: Good Luck!")) end end)