quick fix

This commit is contained in:
Elkien3 2018-05-20 21:22:39 -05:00
parent e571ad9a9d
commit 5a47e1810e
2 changed files with 4 additions and 3 deletions

View File

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

View File

@ -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.",