summaryrefslogtreecommitdiff
path: root/builtin/game/features.lua
diff options
context:
space:
mode:
authorShadowNinja <shadowninja@minetest.net>2014-04-27 21:02:48 -0400
committerShadowNinja <shadowninja@minetest.net>2014-05-08 13:02:04 -0400
commitc4359ff65cd8e4e754442b9f2ef7051a8eaa4241 (patch)
treefeaad8be8c36cc4a0abdbe8d7b84db3ac68ed87e /builtin/game/features.lua
parent1cd512913e4d4ad1fb43d4b6e3d7971bb6c67528 (diff)
downloadminetest-c4359ff65cd8e4e754442b9f2ef7051a8eaa4241.tar.gz
minetest-c4359ff65cd8e4e754442b9f2ef7051a8eaa4241.tar.bz2
minetest-c4359ff65cd8e4e754442b9f2ef7051a8eaa4241.zip
Use "core" namespace internally
Diffstat (limited to 'builtin/game/features.lua')
-rw-r--r--builtin/game/features.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/builtin/game/features.lua b/builtin/game/features.lua
index f3de3ba21..2abfe5278 100644
--- a/builtin/game/features.lua
+++ b/builtin/game/features.lua
@@ -1,6 +1,6 @@
-- Minetest: builtin/features.lua
-minetest.features = {
+core.features = {
glasslike_framed = true,
nodebox_as_selectionbox = true,
chat_send_player_param3 = true,
@@ -9,19 +9,19 @@ minetest.features = {
no_legacy_abms = 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
+ 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, {}