From d584e46b2495f813dd0c8bd5ad46cf8643b3d3fe Mon Sep 17 00:00:00 2001 From: VelocitOni Date: Sat, 13 Sep 2025 18:23:57 -0400 Subject: [PATCH] Was still too slow 7/4s to 2x outright --- src/objects/spb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/objects/spb.c b/src/objects/spb.c index 6879661d6..6933d1d41 100644 --- a/src/objects/spb.c +++ b/src/objects/spb.c @@ -332,7 +332,7 @@ static boolean SPBSeekSoundPlaying(mobj_t *spb) static void SPBSeek(mobj_t *spb, mobj_t *bestMobj) { - const fixed_t desiredSpeed = SPB_DEFAULTSPEED*(7/4); // Seeks the player out 175% faster than its usual speed when locked in + const fixed_t desiredSpeed = SPB_DEFAULTSPEED*(2); // Seeks the player out 2x faster than its usual speed when locked in waypoint_t *curWaypoint = NULL; waypoint_t *destWaypoint = NULL;