summaryrefslogtreecommitdiff
path: root/builtin/features.lua
blob: f3de3ba21a4f0215a164a5ead3567dc2d4b0802c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
-- Minetest: builtin/features.lua

minetest.features = {
	glasslike_framed = true,
	nodebox_as_selectionbox = true,
	chat_send_player_param3 = true,
	get_all_craft_recipes_works = true,
	use_texture_alpha = true,
	no_legacy_abms = true,
}

function minetest.has_feature(arg)
	if type(arg) == "table" then
		missing_features = {}
		result = true
		for ft, _ in pairs(arg) do
			if not minetest.features[ftr] then
				missing_features[ftr] = true
				result = false
			end
		end
		return result, missing_features
	elseif type(arg) == "string" then
		if not minetest.features[arg] then
			return false, {[arg]=true}
		end
		return true, {}
	end
end