Bandolier is back and working again (for now)!

This commit is contained in:
Aaron Suen 2019-11-25 21:50:13 -05:00
commit 942bf2cf14
3 changed files with 3 additions and 5 deletions

View File

@ -111,7 +111,7 @@ minetest.register_on_joinplayer(function(player)
},
arot = {
x = rx or 0,
y = ry or 0,
y = ry or 180,
z = rz or 0
}
}
@ -119,11 +119,10 @@ minetest.register_on_joinplayer(function(player)
addslot(nil, "Arm_Right", -2.5, 8, 0, 2, 178, 60)
--[[
local function cslot(n, x, y, z)
return addslot(n, "Chest", x * 0.8,
return addslot(n, "Bandolier", x * 0.8,
0.75 + y * 1.6,
2.25 + z)
-0.25 + z)
end
cslot(1, 1.75, 0, 0)
@ -134,5 +133,4 @@ minetest.register_on_joinplayer(function(player)
cslot(6, -1, 2, 0.1)
cslot(7, 1, 1, 0.05)
cslot(8, -1.75, 0, 0)
--]]
end)