From 046afb223d38ff374949a30671942c898f4b40c9 Mon Sep 17 00:00:00 2001 From: Antonio Martinez Date: Tue, 21 Oct 2025 16:17:16 -0400 Subject: [PATCH] Actually shorten Stone Shoe --- src/objects/stone-shoe.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/objects/stone-shoe.cpp b/src/objects/stone-shoe.cpp index 7e51d61ca..36990f537 100644 --- a/src/objects/stone-shoe.cpp +++ b/src/objects/stone-shoe.cpp @@ -88,7 +88,7 @@ struct Shoe : Mobj bool valid() const { return Mobj::valid(follow()) && follow()->valid() && Mobj::valid(chain()); } Fixed minDist() const { return 200 * mapobjectscale; } - Fixed maxDist() const { return 800 * mapobjectscale; } + Fixed maxDist() const { return 500 * mapobjectscale; } angle_t followAngle() const { return R_PointToAngle2(x, y, follow()->x, follow()->y); } Fixed followDistance() const { return FixedHypot(x - follow()->x, y - follow()->y); } @@ -237,7 +237,7 @@ private: } } - thrust(a, 8 * mapobjectscale); + thrust(a, 10 * mapobjectscale); Fixed maxSpeed = 32 * mapobjectscale; Fixed speed = FixedHypot(momx, momy);