Decrease sneak margin to combat phasing through thin walls (#13607)

A 1/16th-node-thick wall is 0.625 meters thick, and the previous margin of 0.1 meters meant that these walls could be phased through by sneaking against them. A margin lower than 0.625 prevents this.
This commit is contained in:
archfan 2023-07-17 14:44:33 -04:00 committed by GitHub
parent 2061984313
commit 9b310a6e6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -60,7 +60,9 @@ bool LocalPlayer::updateSneakNode(Map *map, const v3f &position,
const v3f &sneak_max)
{
// Acceptable distance to node center
constexpr f32 allowed_range = (0.5f + 0.1f) * BS;
// This must be > 0.5 units to get the sneak ladder to work
// 0.05 prevents sideways teleporting through 1/16 thick walls
constexpr f32 allowed_range = (0.5f + 0.05f) * BS;
static const v3s16 dir9_center[9] = {
v3s16( 0, 0, 0),
v3s16( 1, 0, 0),