diff options
author | ANAND <ClobberXD@gmail.com> | 2019-02-23 06:42:33 +0530 |
---|---|---|
committer | Paramat <paramat@users.noreply.github.com> | 2019-02-23 01:12:33 +0000 |
commit | 242c9bc36e490daee0fbe74da1feae3fefa76579 (patch) | |
tree | 2972dedcaa916ca8f3d130a7f4d60ae1f65a345f /src/client | |
parent | 85389ad9949fa3ffca85aa65e577a70547bcd211 (diff) | |
download | minetest-242c9bc36e490daee0fbe74da1feae3fefa76579.tar.gz minetest-242c9bc36e490daee0fbe74da1feae3fefa76579.tar.bz2 minetest-242c9bc36e490daee0fbe74da1feae3fefa76579.zip |
Remove 's' from 'automatic forwards' (#8272)
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/game.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/game.cpp b/src/client/game.cpp index 28f6a90ed..37680dda3 100644 --- a/src/client/game.cpp +++ b/src/client/game.cpp @@ -2178,9 +2178,9 @@ void Game::toggleAutoforward() g_settings->set("continuous_forward", bool_to_cstr(autorun_enabled)); if (autorun_enabled) - m_game_ui->showTranslatedStatusText("Automatic forwards enabled"); + m_game_ui->showTranslatedStatusText("Automatic forward enabled"); else - m_game_ui->showTranslatedStatusText("Automatic forwards disabled"); + m_game_ui->showTranslatedStatusText("Automatic forward disabled"); } void Game::toggleMinimap(bool shift_pressed) |