1
0
mirror of https://github.com/Uberi/Minetest-WorldEdit.git synced 2025-10-20 17:35:22 +02:00

Minor maintenance changes

This commit is contained in:
sfan5
2025-09-20 13:29:01 +02:00
parent bf154b12c7
commit 1f9b8ef55b
9 changed files with 56 additions and 30 deletions

View File

@@ -1,4 +1,4 @@
--- WorldEdit mod for the Minetest engine
--- WorldEdit mod for the Luanti engine
-- @module worldedit
-- @release 1.3
-- @copyright 2012 sfan5, Anthony Zhang (Uberi/Temperest), and Brett O'Donnell (cornernote)

View File

@@ -5,7 +5,7 @@
---------------------
local vec = vector.new
local vecw = function(axis, n, base)
local ret = vec(base)
local ret = vector.copy(base)
ret[axis] = n
return ret
end