From c81bbb24fe8746e1922aa8ed01bd55e7684adf62 Mon Sep 17 00:00:00 2001 From: khang Date: Sat, 27 Jul 2024 14:53:47 -0400 Subject: [PATCH] changes requested --- BunnymodXT/modules/ServerDLL.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/BunnymodXT/modules/ServerDLL.cpp b/BunnymodXT/modules/ServerDLL.cpp index 64c5147a..62c5bc37 100644 --- a/BunnymodXT/modules/ServerDLL.cpp +++ b/BunnymodXT/modules/ServerDLL.cpp @@ -3505,8 +3505,6 @@ void TriggerTpLandmarkAfter(entvars_t *pev, Vector offset) pev->origin = pev->origin + offset; // have to offset by some HULL because of origin z diff const auto is_duck = pev->bInDuck || pev->flags & (FL_DUCKING); - const Vector VEC_HULL_MIN(-16, -16, -36); - const Vector VEC_DUCK_HULL_MIN(-16, -16, -18); const auto hull_offset = is_duck ? VEC_DUCK_HULL_MIN : VEC_HULL_MIN; pev->origin[2] += hull_offset[2];