mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 07:23:00 +00:00
hollow: fix undefined variable
This commit is contained in:
parent
6896a9bdd4
commit
e8584c4ec6
1 changed files with 2 additions and 1 deletions
|
@ -15,7 +15,8 @@ function worldeditadditions.hollow(pos1, pos2, wall_thickness)
|
|||
local manip, area = worldedit.manip_helpers.init(pos1, pos2)
|
||||
local data = manip:get_data()
|
||||
|
||||
local node_id_ignore = minetest.get_content_id("air")
|
||||
local node_id_ignore = minetest.get_content_id("ignore")
|
||||
local node_id_air = minetest.get_content_id("air")
|
||||
|
||||
-- minetest.log("action", "pos1: " .. worldeditadditions.vector.tostring(pos1))
|
||||
-- minetest.log("action", "pos2: " .. worldeditadditions.vector.tostring(pos2))
|
||||
|
|
Loading…
Reference in a new issue