This commit is contained in:
Syntriax 2022-02-19 16:46:24 +03:00
parent 54ea8d9a35
commit ccd9fdc435
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ namespace Syntriax.Modules.Movement
public void Move(float x = 0, float y = 0, float z = 0)
{
moveValue = x * MovementMultiplier;
moveValue = x * BaseSpeed * MovementMultiplier;
}
}
}