mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix typo doubletab -> doubletap
This commit is contained in:
parent
bc879a1453
commit
615fd498bc
4 changed files with 10 additions and 10 deletions
|
@ -1596,7 +1596,7 @@ void the_game(
|
|||
input->step(dtime);
|
||||
|
||||
// Increase timer for doubleclick of "jump"
|
||||
if(g_settings->getBool("doubletab_jump") && jump_timer <= 0.2)
|
||||
if(g_settings->getBool("doubletap_jump") && jump_timer <= 0.2)
|
||||
jump_timer += dtime;
|
||||
|
||||
/*
|
||||
|
@ -1690,7 +1690,7 @@ void the_game(
|
|||
}
|
||||
else if(input->wasKeyDown(getKeySetting("keymap_jump")))
|
||||
{
|
||||
if(g_settings->getBool("doubletab_jump") && jump_timer < 0.2)
|
||||
if(g_settings->getBool("doubletap_jump") && jump_timer < 0.2)
|
||||
{
|
||||
if(g_settings->getBool("free_move"))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue