summaryrefslogtreecommitdiff
path: root/builtin/features.lua
diff options
context:
space:
mode:
authorShadowNinja <shadowninja@minetest.net>2014-04-27 17:55:49 -0400
committerShadowNinja <shadowninja@minetest.net>2014-05-07 17:14:23 -0400
commit1cd512913e4d4ad1fb43d4b6e3d7971bb6c67528 (patch)
tree8c1e2c708f567656684e89faee4f7c8e6c5ec673 /builtin/features.lua
parentfef2729fd0945601e6772780514ee55fec35b068 (diff)
downloadminetest-1cd512913e4d4ad1fb43d4b6e3d7971bb6c67528.tar.gz
minetest-1cd512913e4d4ad1fb43d4b6e3d7971bb6c67528.tar.bz2
minetest-1cd512913e4d4ad1fb43d4b6e3d7971bb6c67528.zip
Organize builtin into subdirectories
Diffstat (limited to 'builtin/features.lua')
-rw-r--r--builtin/features.lua29
1 files changed, 0 insertions, 29 deletions
diff --git a/builtin/features.lua b/builtin/features.lua
deleted file mode 100644
index f3de3ba21..000000000
--- a/builtin/features.lua
+++ /dev/null
@@ -1,29 +0,0 @@
--- 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