This commit is contained in:
tacotexmex 2017-09-15 18:40:11 +02:00
parent 2577b99556
commit 70068fd307
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ if minetest.settings:get_bool("item_drop.enable_item_pickup") ~= false then
local keys_pressed
if keytype == 0 then -- LeftAndRight combination
keys_pressed = control.left and control.right
elseif keytpye == 1 then -- SneakAndRMB combination
elseif keytype == 1 then -- SneakAndRMB combination
keys_pressed = control.sneak and control.RMB
else
keys_pressed = control[keytype]