2020-11-19 19:46:40 +01:00
|
|
|
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
|
2021-07-02 05:58:54 +01:00
|
|
|
})
|
2020-11-19 19:46:40 +01:00
|
|
|
|
|
|
|
minetest.register_privilege("travelnet_remove", {
|
|
|
|
description = S("allows to dig travelnet boxes which belog to nets of other players"),
|
|
|
|
give_to_singleplayer = false
|
2021-07-02 05:58:54 +01:00
|
|
|
})
|