mirror of
https://git.phreedom.club/localhost_frssoft/fediauth.git
synced 2024-11-17 13:42:38 +00:00
13 lines
395 B
Lua
13 lines
395 B
Lua
|
|
minetest.register_privilege("fediauth_enabled", {
|
|
description = "fediauth enabled player",
|
|
give_to_singleplayer = false,
|
|
fediauth_keep = true
|
|
})
|
|
|
|
minetest.register_privilege("fediauth_bypass", {
|
|
description = "fediauth bypass for players who not want type code on each log in (when enabled fediauth.fedi_required)",
|
|
give_to_singleplayer = false,
|
|
fediauth_keep = true
|
|
})
|