mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-19 01:21:05 +01:00
Fix accidental globals in mcl_walls
This commit is contained in:
parent
755e2ab8d4
commit
207d86733e
1 changed files with 2 additions and 2 deletions
|
@ -98,10 +98,10 @@ function mcl_walls.register_wall(nodename, description, craft_material, tiles, i
|
||||||
end
|
end
|
||||||
base_groups.wall = 1
|
base_groups.wall = 1
|
||||||
|
|
||||||
internal_groups = table.copy(base_groups)
|
local internal_groups = table.copy(base_groups)
|
||||||
internal_groups.not_in_creative_inventory = 1
|
internal_groups.not_in_creative_inventory = 1
|
||||||
|
|
||||||
main_node_groups = table.copy(base_groups)
|
local main_node_groups = table.copy(base_groups)
|
||||||
main_node_groups.deco_block = 1
|
main_node_groups.deco_block = 1
|
||||||
|
|
||||||
-- TODO: Stop hardcoding blast resistance
|
-- TODO: Stop hardcoding blast resistance
|
||||||
|
|
Loading…
Reference in a new issue