diff options
author | ANAND <ClobberXD@protonmail.com> | 2020-06-05 18:36:35 +0530 |
---|---|---|
committer | celeron55 <celeron55@gmail.com> | 2020-08-15 12:19:20 +0300 |
commit | 291a6b70d674d9003f522b5875a60f7e2753e32b (patch) | |
tree | eb4368dfc8d0055b53bd1160b5a8836726245ffb /src/client/client.cpp | |
parent | fff03931871b68e092e12bfce9056f760e8ec9dd (diff) | |
download | minetest-291a6b70d674d9003f522b5875a60f7e2753e32b.tar.gz minetest-291a6b70d674d9003f522b5875a60f7e2753e32b.tar.bz2 minetest-291a6b70d674d9003f522b5875a60f7e2753e32b.zip |
Allow binding dig, place actions to keys; remove LMB/RMB hardcoding
Co-authored-by: Sam Caulfield <sam@samcaulfield.com>
Diffstat (limited to 'src/client/client.cpp')
-rw-r--r-- | src/client/client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/client.cpp b/src/client/client.cpp index 65e5b3d8c..745cce900 100644 --- a/src/client/client.cpp +++ b/src/client/client.cpp @@ -1307,7 +1307,7 @@ void Client::sendPlayerPos() player->last_pitch == player->getPitch() && player->last_yaw == player->getYaw() && player->last_keyPressed == player->keyPressed && - player->last_camera_fov == camera_fov && + player->last_camera_fov == camera_fov && player->last_wanted_range == wanted_range) return; |