aboutsummaryrefslogtreecommitdiff
path: root/advtrains_interlocking/tsr_rail.lua
diff options
context:
space:
mode:
Diffstat (limited to 'advtrains_interlocking/tsr_rail.lua')
-rw-r--r--advtrains_interlocking/tsr_rail.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/advtrains_interlocking/tsr_rail.lua b/advtrains_interlocking/tsr_rail.lua
index 4f4872e..c1e3c1c 100644
--- a/advtrains_interlocking/tsr_rail.lua
+++ b/advtrains_interlocking/tsr_rail.lua
@@ -27,11 +27,11 @@ local adefunc = function(def, preset, suffix, rotation)
on_receive_fields = function(pos, formname, fields, player)
local pname = player:get_player_name()
if not minetest.check_player_privs(pname, {interlocking=true}) then
- minetest.chat_send_player(pname, S("You are not allowed to modify this track without the @1 privilege.", "interlocking"))
+ minetest.chat_send_player(pname, S("You are not allowed to configure this track without the @1 privilege.", "interlocking"))
return
end
if minetest.is_protected(pos, pname) then
- minetest.chat_send_player(pname, S("You are not allowed to modify this protected track."))
+ minetest.chat_send_player(pname, S("You are not allowed to configure this track."))
minetest.record_protection_violation(pos, pname)
return
end