forked from VoxeLibre/VoxeLibre
Merge branch 'master' into formspec-v4
This commit is contained in:
commit
09739b0d89
|
@ -9,7 +9,7 @@
|
|||
## Maintainers
|
||||
* Fleckenstein
|
||||
* kay27
|
||||
* oilboi
|
||||
* jordan4ibanez
|
||||
|
||||
## Developers
|
||||
* bzoss
|
||||
|
@ -74,7 +74,7 @@
|
|||
* Rochambeau
|
||||
* rubenwardy
|
||||
* stu
|
||||
* oilboi
|
||||
* jordan4ibanez
|
||||
* 4aiman
|
||||
* Kahrl
|
||||
* Krock
|
||||
|
|
|
@ -1030,7 +1030,7 @@ local node_ok = function(pos, fallback)
|
|||
end
|
||||
|
||||
local function get_light(pos, tod)
|
||||
if math.abs(pos.x) < 31000 and math.abs(pos.y) < 31000 and math.abs(pos.z) < 31000 then
|
||||
if minetest.get_node_or_nil(pos) then
|
||||
local lightfunc = minetest.get_natural_light or minetest.get_node_light
|
||||
return lightfunc(pos, tod)
|
||||
else
|
||||
|
|
|
@ -202,12 +202,30 @@ Stained glass is a decorative and mostly transparent block which comes in variou
|
|||
Stick=
|
||||
Sticks are a very versatile crafting material; used in countless crafting recipes.=
|
||||
Stone=
|
||||
Stripped Acacia Log=
|
||||
Stripped Acacia Wood=
|
||||
Stripped Birch Log=
|
||||
Stripped Birch Wood=
|
||||
Stripped Dark Oak Log=
|
||||
Stripped Dark Oak Wood=
|
||||
Stripped Jungle Log=
|
||||
Stripped Jungle Wood=
|
||||
Stripped Oak Log=
|
||||
Stripped Oak Wood=
|
||||
Stripped Spruce Log=
|
||||
Stripped Spruce Wood=
|
||||
Stone Bricks=
|
||||
Sugar=
|
||||
Sugar Canes=
|
||||
Sugar canes are a plant which has some uses in crafting. Sugar canes will slowly grow up to 3 blocks when they are next to water and are placed on a grass block, dirt, sand, red sand, podzol or coarse dirt. When a sugar cane is broken, all sugar canes connected above will break as well.=
|
||||
Sugar canes can only be placed top of other sugar canes and on top of blocks on which they would grow.=
|
||||
Sugar comes from sugar canes and is used to make sweet foods.=
|
||||
The stripped trunk of an acacia tree.=
|
||||
The stripped trunk of an birch tree.=
|
||||
The stripped trunk of an dark oak tree.=
|
||||
The stripped trunk of an jungle tree.=
|
||||
The stripped trunk of an oak tree.=
|
||||
The stripped trunk of an spruce tree.=
|
||||
The trunk of a birch tree.=
|
||||
The trunk of a dark oak tree.=
|
||||
The trunk of a jungle tree.=
|
||||
|
@ -216,6 +234,7 @@ The trunk of an acacia.=
|
|||
The trunk of an oak tree.=
|
||||
This block consists of a couple of loose stones and can't support itself.=
|
||||
This is a decorative block surrounded by the bark of a tree trunk.=
|
||||
This is a decorative block.=
|
||||
This is a full block of snow. Snow of this thickness is usually found in areas of extreme cold.=
|
||||
This is a piece of cactus commonly found in dry areas, especially deserts. Over time, cacti will grow up to 3 blocks high on sand or red sand. A cactus hurts living beings touching it with a damage of 1 HP every half second. When a cactus block is broken, all cactus blocks connected above it will break as well.=
|
||||
This stone contains pure gold, a rare metal.=
|
||||
|
|
|
@ -4,6 +4,7 @@ mcl_playerplus = {
|
|||
elytra = {},
|
||||
}
|
||||
|
||||
local player_velocity_old = {x=0, y=0, z=0}
|
||||
local get_connected_players = minetest.get_connected_players
|
||||
local dir_to_yaw = minetest.dir_to_yaw
|
||||
local get_item_group = minetest.get_item_group
|
||||
|
@ -195,6 +196,12 @@ minetest.register_globalstep(function(dtime)
|
|||
and (fly_node == "air" or fly_node == "ignore")
|
||||
|
||||
if elytra.active then
|
||||
if player_velocity.x < (player_velocity_old.x - 10) or player_velocity.x > (player_velocity_old.x + 10) then
|
||||
player:set_hp(player:get_hp() - (math.abs(player_velocity_old.x) * 0.2))
|
||||
end
|
||||
if player_velocity.z < (player_velocity_old.z - 10) or player_velocity.z > (player_velocity_old.z + 10) then
|
||||
player:set_hp(player:get_hp() - (math.abs(player_velocity_old.z) * 0.2))
|
||||
end
|
||||
mcl_player.player_set_animation(player, "fly")
|
||||
if player_velocity.y < -1.5 then
|
||||
player:add_velocity({x=0, y=0.17, z=0})
|
||||
|
@ -240,6 +247,7 @@ minetest.register_globalstep(function(dtime)
|
|||
playerphysics.remove_physics_factor(player, "gravity", "mcl_playerplus:elytra")
|
||||
end
|
||||
|
||||
player_velocity_old = player:get_velocity() or player:get_player_velocity()
|
||||
-- controls right and left arms pitch when shooting a bow
|
||||
if string.find(wielded:get_name(), "mcl_bows:bow") and control.RMB and not control.LMB and not control.up and not control.down and not control.left and not control.right then
|
||||
player:set_bone_position("Arm_Right_Pitch_Control", vector.new(-3,5.785,0), vector.new(pitch+90,-30,pitch * -1 * .35))
|
||||
|
|
Loading…
Reference in New Issue