diff options
author | Wuzzy <almikes@aol.com> | 2016-09-02 07:28:27 +0200 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-09-02 07:28:27 +0200 |
commit | 497a65bf9659875ee2ac20db7d895278164b9891 (patch) | |
tree | 8f6ec5d3c21e5b3c226c3d052db9eaef76ebec6b /init.lua | |
parent | 01bc7eb8bfefc931a8ad3d8bd95f603ca9707b0d (diff) |
Fix mining group name check against dig_immediate
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -446,7 +446,7 @@ doc.new_category("nodes", { -- Check if there are no mining groups at all local nogroups = true for groupname,_ in pairs(mininggroups) do - if data.def.groups[groupname] ~= nil or groupname == dig_immediate then + if data.def.groups[groupname] ~= nil or groupname == "dig_immediate" then nogroups = false break end |