Use new vectors

This commit is contained in:
AFCMS 2022-12-04 18:41:42 +01:00 committed by Gitea
parent bf25fca47d
commit b9238b4069
1 changed files with 6 additions and 6 deletions

View File

@ -9,12 +9,12 @@ if mod_screwdriver then
end end
local alldirs = { local alldirs = {
{x = 0, y = 0, z = 1}, vector.new(0, 0, 1),
{x = 1, y = 0, z = 0}, vector.new(1, 0, 0),
{x = 0, y = 0, z = -1}, vector.new(0, 0, -1),
{x = -1, y = 0, z = 0}, vector.new(-1, 0, 0),
{x = 0, y = -1, z = 0}, vector.new(0, -1, 0),
{x = 0, y = 1, z = 0}, vector.new(0, 1, 0),
} }
minetest.register_node("mcl_core:bone_block", { minetest.register_node("mcl_core:bone_block", {