forked from MineClone5/MineClone5
fixed elytras
This commit is contained in:
parent
fb7390f61d
commit
047d75a78a
|
@ -279,7 +279,7 @@ minetest.register_globalstep(function(dtime)
|
||||||
local fly_node = minetest.get_node({x = fly_pos.x, y = fly_pos.y - 0.5, z = fly_pos.z}).name
|
local fly_node = minetest.get_node({x = fly_pos.x, y = fly_pos.y - 0.5, z = fly_pos.z}).name
|
||||||
local elytra = mcl_playerplus.elytra[name]
|
local elytra = mcl_playerplus.elytra[name]
|
||||||
|
|
||||||
elytra.active = player:get_inventory():get_stack("armor", 3):get_name() == "mcl_armor:elytra"
|
elytra.active = player:get_inventory():get_stack("armor", 3):get_name() == "mcl_armor:elytra" or "mcl_armor:elytra_enchanted"
|
||||||
and not player:get_attach()
|
and not player:get_attach()
|
||||||
and (elytra.active or control.jump and player_velocity.y < -6)
|
and (elytra.active or control.jump and player_velocity.y < -6)
|
||||||
and (fly_node == "air" or fly_node == "ignore")
|
and (fly_node == "air" or fly_node == "ignore")
|
||||||
|
|
Loading…
Reference in New Issue