Merge pull request #3 from Rui914/patch-1

Fix #2
This commit is contained in:
tacigar 2016-06-11 10:37:45 +09:00 committed by GitHub
commit 8dcd70d85c
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ minetest.after(0, function()
for name, node in pairs(minetest.registered_nodes) do
if minetest.get_item_group(name, "plant") > 0 then
local s, i = string.match(name, "(.+)_(%d+)")
if max[s] == nil or max[s] < i then max[s] = i end
if (s and i) and (max[s] == nil or max[s] < i) then max[s] = i end
end
end
for s, i in pairs(max) do