fixing up explosions. Also make slade sand diggable in mcl, and fix a bug in web generators

This commit is contained in:
FaceDeer
2022-08-13 22:20:48 -06:00
parent de3e15e87b
commit c1bddb9ef7
7 changed files with 29 additions and 24 deletions

View File

@ -24,7 +24,7 @@ local anchor_groups = {"group:soil", "group:stone", "group:tree", "group:wood",
local in_anchor_group = function(name)
for _, group in pairs(anchor_groups) do
if minetest.get_item_group(name, group:strsub(7)) then
if minetest.get_item_group(name, string.sub(group, 7)) then
return true
end
end