Use new vectors

This commit is contained in:
AFCMS 2022-12-04 18:41:42 +01:00
parent cda07cf2b3
commit 6a47b34352
Signed by untrusted user: AFCMS
GPG Key ID: 8720389A25B652E3
1 changed files with 6 additions and 6 deletions

View File

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