From 032923c660806819398ea100376dd8e2359a4fc4 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Wed, 4 Sep 2019 15:38:51 +0200 Subject: [PATCH] fixed upleft --- MLEM/Misc/Direction2.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MLEM/Misc/Direction2.cs b/MLEM/Misc/Direction2.cs index 212fe16..a4e076e 100644 --- a/MLEM/Misc/Direction2.cs +++ b/MLEM/Misc/Direction2.cs @@ -53,7 +53,7 @@ namespace MLEM.Misc { case Direction2.DownLeft: return new Point(-1, 1); case Direction2.UpLeft: - return new Point(-1, 1); + return new Point(-1, -1); default: return Point.Zero; }