be109dd8dc
* Initial linting done * Spaces spaces everywhere, more than you might think * No space like home * Continuation indentation * Double down * One more thing * Undo practical change * Update doors.lua to reduce line lengths * String concatenation and line lengths Co-authored-by: Oversword <bionic@oversword.co.uk> Co-authored-by: OgelGames <olliverdc28@gmail.com>
12 lines
388 B
Lua
12 lines
388 B
Lua
local S = minetest.get_translator("travelnet")
|
|
|
|
minetest.register_privilege("travelnet_attach", {
|
|
description = S("allows to attach travelnet boxes to travelnets of other players"),
|
|
give_to_singleplayer = false
|
|
})
|
|
|
|
minetest.register_privilege("travelnet_remove", {
|
|
description = S("allows to dig travelnet boxes which belog to nets of other players"),
|
|
give_to_singleplayer = false
|
|
})
|