]> git.lizzy.rs Git - Crafter.git/blob - mods/redstone/functions.lua
Update everything
[Crafter.git] / mods / redstone / functions.lua
1 --this converts a vector into absolute value
2 function vector.abs(v)
3         return {
4                 x = math.abs(v.x),
5                 y = math.abs(v.y),
6                 z = math.abs(v.z)
7         }
8 end