diff --git a/Shared/Input.cs b/Shared/Input.cs index 7801294..3155d37 100644 --- a/Shared/Input.cs +++ b/Shared/Input.cs @@ -73,10 +73,10 @@ namespace SemiColinGames { Motion.X = 1; } if (up && !down) { - Motion.Y = 1; + Motion.Y = -1; } if (down && !up) { - Motion.Y = -1; + Motion.Y = 1; } }