diff --git a/mods/ITEMS/mcl_enchanting/enchantments.lua b/mods/ITEMS/mcl_enchanting/enchantments.lua index 4d2831d80..e9c5c86b3 100644 --- a/mods/ITEMS/mcl_enchanting/enchantments.lua +++ b/mods/ITEMS/mcl_enchanting/enchantments.lua @@ -148,7 +148,7 @@ minetest.register_on_punchplayer(function(player, hitter, time_from_last_punch, end player:add_velocity({x=d.x*4,y=yy,z=d.z*4}) end - + if hitter:is_player() then local wielditem = hitter:get_wielded_item() if wielditem then diff --git a/mods/PLAYER/mcl_player/init.lua b/mods/PLAYER/mcl_player/init.lua index 922ac2c69..d7877c9ac 100644 --- a/mods/PLAYER/mcl_player/init.lua +++ b/mods/PLAYER/mcl_player/init.lua @@ -232,9 +232,6 @@ minetest.register_globalstep(function(dtime) local velocity = player:get_velocity() or player:get_player_velocity() local mod_speed = 5 - if player:get_meta():get("punched") and tonumber(player:get_meta():get("punched")) > 0 then - mod_speed = 10 - end -- Apply animations based on what the player is doing if player:get_hp() == 0 then player_set_animation(player, "die")