diff options
Diffstat (limited to 'src/client/content_cao.cpp')
-rw-r--r-- | src/client/content_cao.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/content_cao.cpp b/src/client/content_cao.cpp index 46007a622..c9778998a 100644 --- a/src/client/content_cao.cpp +++ b/src/client/content_cao.cpp @@ -1772,7 +1772,7 @@ void GenericCAO::processMessage(const std::string &data) bool sneak_glitch = !readU8(is); bool new_move = !readU8(is); // this one is off by default - bool new_gravity = readU8(is); + bool new_acceleration = readU8(is); if(m_is_local_player) @@ -1784,7 +1784,7 @@ void GenericCAO::processMessage(const std::string &data) player->physics_override_sneak = sneak; player->physics_override_sneak_glitch = sneak_glitch; player->physics_override_new_move = new_move; - player->physics_override_new_gravity = new_gravity; + player->physics_override_new_acceleration = new_acceleration; } } else if (cmd == AO_CMD_SET_ANIMATION) { // TODO: change frames send as v2s32 value |