mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-28 13:53:45 +01:00
Use new vectors
This commit is contained in:
parent
bf25fca47d
commit
b9238b4069
@ -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", {
|
||||
|
Loading…
Reference in New Issue
Block a user