Can't sprint and sneak at the same time

This commit is contained in:
Wuzzy 2018-01-08 04:03:28 +01:00
parent afc55f8139
commit f71cff0468
1 changed files with 2 additions and 1 deletions

View File

@ -47,8 +47,9 @@ minetest.register_globalstep(function(dtime)
for playerName,playerInfo in pairs(players) do
local player = minetest.get_player_by_name(playerName)
if player ~= nil then
local ctrl = player:get_player_control()
--Check if the player should be sprinting
if player:get_player_control()["aux1"] and player:get_player_control()["up"] then
if ctrl.aux1 and ctrl.up and not ctrl.sneak then
players[playerName]["shouldSprint"] = true
else
players[playerName]["shouldSprint"] = false