diff --git a/Assets/Scripts/Paddle.cs b/Assets/Scripts/Paddle.cs index 5a52327..636893f 100644 --- a/Assets/Scripts/Paddle.cs +++ b/Assets/Scripts/Paddle.cs @@ -77,7 +77,7 @@ void FixedUpdate() { } else if (Mathf.Abs(x) > Mathf.Abs(y)) { direction = x > 0 ? "Right" : "Left"; - if(x > 0) { + if(playerOne ? x > 0 : x < 0) { GoRight(); } else { GoLeft();