1
0
Fork 0
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:
PilzAdam 2013-01-04 20:00:49 +01:00
parent bc879a1453
commit 615fd498bc
4 changed files with 10 additions and 10 deletions

View file

@ -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"))
{