summaryrefslogtreecommitdiff
path: root/builtin/features.lua
diff options
context:
space:
mode:
Diffstat (limited to 'builtin/features.lua')
-rw-r--r--builtin/features.lua28
1 files changed, 28 insertions, 0 deletions
diff --git a/builtin/features.lua b/builtin/features.lua
new file mode 100644
index 000000000..0eef2519d
--- /dev/null
+++ b/builtin/features.lua
@@ -0,0 +1,28 @@
+-- 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,
+}
+
+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