aboutsummaryrefslogtreecommitdiff
path: root/src/content/subgames.h
Commit message (Collapse)AuthorAge
* Use virtual paths to specify exact mod to enable (#11784)rubenwardy2022-01-30
|
* Add "MINETEST_MOD_PATH" environment variable (#11515)emixa-d2021-10-07
| | | | This adds an environment variable MINETEST_MOD_PATH. When it exists, Minetest will look there for mods in addition to ~/.minetest/mods/.
* Prevent games from setting secure settings (#10460)rubenwardy2020-10-06
|
* Sanitize world directory names on create. Keep original name separate (#9432)Hugues Ross2020-07-28
| | | Blacklisted characters are replaced by '_' in the path. The display name is stored in world.mt, and duplicate file names are resolved by adding an incrementing suffix (_1, _2, _3, etc).
* Add updating to online content browserrubenwardy2018-05-16
|
* Add online content repositoryrubenwardy2018-04-19
Replaces mods and texture pack tabs with a single content tab
span class="hl kwd">register_privilege("interact", "Can interact with things and modify the world") core.register_privilege("teleport", "Can use /teleport command") core.register_privilege("bring", "Can teleport other players") core.register_privilege("settime", "Can use /time") core.register_privilege("privs", "Can modify privileges") core.register_privilege("basic_privs", "Can modify 'shout' and 'interact' privileges") core.register_privilege("server", "Can do server maintenance stuff") core.register_privilege("shout", "Can speak in chat") core.register_privilege("ban", "Can ban and unban players") core.register_privilege("kick", "Can kick players") core.register_privilege("give", "Can use /give and /giveme") core.register_privilege("password", "Can use /setpassword and /clearpassword") core.register_privilege("fly", { description = "Can fly using the free_move mode", give_to_singleplayer = false, }) core.register_privilege("fast", { description = "Can walk fast using the fast_move mode", give_to_singleplayer = false, }) core.register_privilege("noclip", { description = "Can fly through walls", give_to_singleplayer = false, }) core.register_privilege("rollback", "Can use the rollback functionality")