diff --git a/builtin/game/item.lua b/builtin/game/item.lua index be54d5f70..659d21331 100644 --- a/builtin/game/item.lua +++ b/builtin/game/item.lua @@ -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