]> git.lizzy.rs Git - minetest.git/blobdiff - builtin/game/features.lua
Translated using Weblate (Czech)
[minetest.git] / builtin / game / features.lua
index f3de3ba21a4f0215a164a5ead3567dc2d4b0802c..a5f17e54043c3966e37beef07b7a73e42c43d40e 100644 (file)
@@ -1,27 +1,28 @@
 -- Minetest: builtin/features.lua
 
-minetest.features = {
+core.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,
+       texture_names_parens = true,
 }
 
-function minetest.has_feature(arg)
+function core.has_feature(arg)
        if type(arg) == "table" then
-               missing_features = {}
-               result = true
-               for ft, _ in pairs(arg) do
-                       if not minetest.features[ftr] then
+               local missing_features = {}
+               local result = true
+               for ftr in pairs(arg) do
+                       if not core.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
+               if not core.features[arg] then
                        return false, {[arg]=true}
                end
                return true, {}