]> git.lizzy.rs Git - minetest.git/blobdiff - builtin/game/features.lua
Clearobjects: Send progress messages to terminal using actionstream
[minetest.git] / builtin / game / features.lua
index 2abfe5278551b066e23d8e2482c82c010fedb807..ef85fbbc373431c59571ded52bdc0c54fceee42c 100644 (file)
@@ -7,13 +7,17 @@ core.features = {
        get_all_craft_recipes_works = true,
        use_texture_alpha = true,
        no_legacy_abms = true,
+       texture_names_parens = true,
+       area_store_custom_ids = true,
+       add_entity_with_staticdata = true,
+       no_chat_message_prediction = true,
 }
 
 function core.has_feature(arg)
        if type(arg) == "table" then
-               missing_features = {}
-               result = true
-               for ft, _ in pairs(arg) do
+               local missing_features = {}
+               local result = true
+               for ftr in pairs(arg) do
                        if not core.features[ftr] then
                                missing_features[ftr] = true
                                result = false