mirror of
				https://github.com/Uberi/Minetest-WorldEdit.git
				synced 2025-10-31 04:45:33 +01:00 
			
		
		
		
	Fix undefined variable access in worldedit.metaload
				
					
				
			`file` in the deprecated `worldedit.metaload` function was undefined, as reported by luacheck.
This commit is contained in:
		| @@ -24,11 +24,14 @@ function worldedit.metasave(pos1, pos2, filename) | ||||
| 	return count | ||||
| end | ||||
|  | ||||
| function worldedit.metaload(originpos, filename) | ||||
| function worldedit.metaload(originpos, file_name) | ||||
| 	deprecated("load") | ||||
| 	filename = minetest.get_worldpath() .. "/schems/" .. file .. ".wem" | ||||
| 	local file, err = io.open(filename, "wb") | ||||
| 	if err then return 0 end | ||||
| 	local file_path = minetest.get_worldpath() .. | ||||
| 		"/schems/" .. file_name .. ".wem" | ||||
| 	local file, err = io.open(file_path, "wb") | ||||
| 	if err then | ||||
| 		return 0 | ||||
| 	end | ||||
| 	local data = file:read("*a") | ||||
| 	return worldedit.deserialize(originpos, data) | ||||
| end | ||||
|   | ||||
		Reference in New Issue
	
	Block a user