Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Small fixes of minetest.has_feature
  • Loading branch information
Rui authored and est31 committed Sep 3, 2015
1 parent 196975b commit d493855
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions builtin/game/features.lua
Expand Up @@ -12,9 +12,9 @@ core.features = {

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
Expand Down

0 comments on commit d493855

Please sign in to comment.