1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-12 16:15:20 +02:00

Replace deprecated use of vector.new with copy

This commit is contained in:
Lars Müller
2022-07-08 13:52:58 +02:00
committed by GitHub
parent 0e63f18a73
commit b15393c2a5

View File

@@ -5,8 +5,8 @@ local builtin_shared = ...
local function copy_pointed_thing(pointed_thing)
return {
type = pointed_thing.type,
above = vector.new(pointed_thing.above),
under = vector.new(pointed_thing.under),
above = vector.copy(pointed_thing.above),
under = vector.copy(pointed_thing.under),
ref = pointed_thing.ref,
}
end