Skip to content

Commit

Permalink
Increase superFastMode speed from 3* > 8*
Browse files Browse the repository at this point in the history
  • Loading branch information
Lacyway committed May 15, 2024
1 parent 0ace3ad commit 9facf63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Fika.Core/Coop/FreeCamera/FreeCamera.cs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ protected void Update()
float movementSpeed = fastMode ? 20f : 2f;
if (superFastMode)
{
movementSpeed *= 3;
movementSpeed *= 8;
}

if (Input.GetKey(KeyCode.A) || Input.GetKey(KeyCode.LeftArrow))
Expand Down

0 comments on commit 9facf63

Please sign in to comment.