aboutsummaryrefslogtreecommitdiff
path: root/lib/lua/src/lmathlib.c
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2019-03-18 22:41:39 +0100
committersfan5 <sfan5@live.de>2019-03-19 22:36:51 +0100
commit5b99abb847e85c5815dc4343d8b95648a5577ecf (patch)
tree6225bdf6163f83591edf098a738c0536aa3ed586 /lib/lua/src/lmathlib.c
parent426bdba7fb90ce97b8bbdf102d770c4e8a27d8c1 (diff)
downloadminetest-5b99abb847e85c5815dc4343d8b95648a5577ecf.tar.gz
minetest-5b99abb847e85c5815dc4343d8b95648a5577ecf.tar.bz2
minetest-5b99abb847e85c5815dc4343d8b95648a5577ecf.zip
Fix texture rotation for wallmounted nodeboxes
fixes #8358
Diffstat (limited to 'lib/lua/src/lmathlib.c')
0 files changed, 0 insertions, 0 deletions
#n116'>116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
-- advtrains
-- protection.lua: privileges and rail protection, and some helpers


-- Privileges to control TRAIN DRIVING/COUPLING
minetest.register_privilege("train_operator", {
	description = "Without this privilege, a player can't do anything about trains, neither place or remove them nor drive or couple them (but he can build tracks if he has track_builder)",
	give_to_singleplayer= true,
});

minetest.register_privilege("train_admin", {
	description = "Player may drive, place or remove any trains from/to anywhere, regardless of owner, whitelist or protection",
	give_to_singleplayer= true,
});

-- Privileges to control TRACK BUILDING
minetest.register_privilege("track_builder", {
	description = "Player can place and/or dig rails not protected from him. If he also has protection_bypass, he can place/dig any rails",
	give_to_singleplayer= true,
});

-- Privileges to control OPERATING TURNOUTS/SIGNALS
minetest.register_privilege("railway_operator", {