From 52a6673dab08800df0ef8f6403d9c58489764722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20M=C3=BCller?= <34514239+appgurueu@users.noreply.github.com> Date: Sat, 14 Dec 2024 17:04:12 +0100 Subject: [PATCH] Get rid of obsolete workaround for collision detection bugs (#15540) --- src/client/content_cao.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/client/content_cao.cpp b/src/client/content_cao.cpp index b73b3602c..d90d4e8b0 100644 --- a/src/client/content_cao.cpp +++ b/src/client/content_cao.cpp @@ -1663,11 +1663,6 @@ void GenericCAO::processMessage(const std::string &data) bool is_end_position = readU8(is); float update_interval = readF32(is); - // Place us a bit higher if we're physical, to not sink into - // the ground due to sucky collision detection... - if(m_prop.physical) - m_position += v3f(0,0.002,0); - if(getParent() != NULL) // Just in case return;