Skip to content

Commit

Permalink
fix: increase maximum speed for spectator model to 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
derkalle4 committed Nov 23, 2024
1 parent 0539931 commit c313a4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Cosmetics+SpectatorModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ private bool UpdateProp(CCSPlayerController player, int index, int offset_z = 0,
|| !player.Pawn.IsValid) return false;
// get player pawn
var playerPawn = player!.Pawn!.Value;
float maxSpeed = 0.8f;
float maxSpeed = 0.9f;
// set player max speed
playerPawn.AbsVelocity.X *= maxSpeed;
playerPawn.AbsVelocity.Y *= maxSpeed;
Expand Down

0 comments on commit c313a4b

Please sign in to comment.