diff --git a/mods/interact/init.lua b/mods/interact/init.lua index 197f3fd..282395e 100644 --- a/mods/interact/init.lua +++ b/mods/interact/init.lua @@ -105,7 +105,8 @@ minetest.register_on_player_receive_fields(function(player, formname, fields) return elseif fields.yes then if interact.grief_ban ~= true then - minetest.kick_player(name, rule_table[language].msg_grief) + --minetest.kick_player(name, rule_table[language].msg_grief) + minetest.chat_send_player(name, rule_table[language].msg_grief) else minetest.ban_player(name) end diff --git a/mods/interact/rules-english.lua b/mods/interact/rules-english.lua index 18836a0..67af3a3 100644 --- a/mods/interact/rules-english.lua +++ b/mods/interact/rules-english.lua @@ -45,8 +45,8 @@ msg_grief = "A *lot* of griefing is looked down upon, though some war destructio --The second screen-- --Lines one and two. Make sure each line is less than 70 characters, or they will run off the screen. -s2_l1 = "So, do you want interact, or do you just want to look around", -s2_l2 = "the server?", +s2_l1 = "So, do you want interact, or do you just want to look around the server?", +s2_l2 = "", --The buttons. These ones can have a maximum of 26 characters. s2_b1 = "Yes, I want interact!", s2_b2 = "I just want to look round.",