From dc3dcb0c82bbd1bf0537cc517ad51d392f9e3437 Mon Sep 17 00:00:00 2001 From: Andrio Celos Date: Mon, 26 Dec 2022 19:11:40 +1100 Subject: [PATCH] Swap start positions of player 3 and 4 on some stages --- TableturfBattleServer/StageDatabase.cs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/TableturfBattleServer/StageDatabase.cs b/TableturfBattleServer/StageDatabase.cs index 1702919..48f4d8b 100644 --- a/TableturfBattleServer/StageDatabase.cs +++ b/TableturfBattleServer/StageDatabase.cs @@ -10,7 +10,7 @@ internal class StageDatabase { private static readonly Stage[] stages = new Stage[] { new("Main Street", new Space[9, 26], new[] { new Point[] { new(4, 21), new(4, 4), new(4, 13) }, - new Point[] { new(2, 21), new(6, 4), new(2, 4), new(6, 21) } + new Point[] { new(2, 21), new(6, 4), new(6, 21), new(2, 4) } }), new("Thunder Point", new Space[,] { { o, o, o, o, o, o, o, E, E, E, E, E, E, E, E, E, E, E, E, E, E, E }, @@ -31,7 +31,7 @@ internal class StageDatabase { { E, E, E, E, E, E, E, E, E, E, E, E, E, E, E, o, o, o, o, o, o, o }, }, new[] { new Point[] { new(3, 18), new(12, 3), new(7, 11) }, - new Point[] { new(3, 18), new(12, 3), new(3, 10), new(12, 11) }, + new Point[] { new(3, 18), new(12, 3), new(12, 11), new(3, 10) }, }), new("X Marks the Garden", new Space[,] { { o, o, o, o, o, o, o, o, E, E, E, E, E, E, E, o, o, o, o, o, o, o, o }, @@ -53,8 +53,8 @@ internal class StageDatabase { { o, o, o, o, o, o, o, o, E, E, E, E, E, E, E, o, o, o, o, o, o, o, o }, { o, o, o, o, o, o, o, o, E, E, E, E, E, E, E, o, o, o, o, o, o, o, o }, { o, o, o, o, o, o, o, o, E, E, E, E, E, E, E, o, o, o, o, o, o, o, o }, - }, new[] { new Point[] { new(9, 19), new(x: 9, 3), new(3, 11), new(15, 11) } }), - new("Square Squared", new Space[15, 15], new[] { new Point[] { new(3, 11), new(11, 3), new(3, 3), new(11, 11) }}), + }, new[] { new Point[] { new(9, 19), new(x: 9, 3), new(15, 11), new(3, 11) } }), + new("Square Squared", new Space[15, 15], new[] { new Point[] { new(3, 11), new(11, 3), new(11, 11), new(3, 3) }}), new("Lakefront Property", new Space[,] { { E, E, E, E, E, E, E, E, E, E, E, E, E, E, E, E, }, { E, E, E, E, E, E, E, E, E, E, E, E, E, E, E, E, }, @@ -72,7 +72,7 @@ internal class StageDatabase { { E, E, E, E, E, E, E, E, E, E, E, E, E, E, E, E, }, { E, E, E, E, E, E, E, E, E, E, E, E, E, E, E, E, }, { E, E, E, E, E, E, E, E, E, E, E, E, E, E, E, E, }, - }, new[] { new Point[] { new(3, 12), new(12, 3), new(3, 3), new(12, 12) }}), + }, new[] { new Point[] { new(3, 12), new(12, 3), new(12, 12), new(3, 3) }}), new("Double Gemini", new Space[,] { { o, o, o, o, o, o, o, o, E, o, o, o, o, o, o, o, E, o, o, o, o, o, o, o, o }, { o, o, o, o, o, o, o, E, E, E, o, o, o, o, o, E, E, E, o, o, o, o, o, o, o }, @@ -93,7 +93,7 @@ internal class StageDatabase { { o, o, o, o, o, o, o, o, E, o, o, o, o, o, o, o, E, o, o, o, o, o, o, o, o }, }, new[] { new Point[] { new(8, 19), new(8, 5), new(8, 12) }, - new Point[] { new(5, 16), new(11, 8), new(5, 8), new(11, 16) } + new Point[] { new(5, 16), new(11, 8), new(11, 16), new(5, 8) } }), new("River Drift", new Space[,] { { o, o, o, o, o, o, o, o, o, o, o, o, o, o, o, o, o, o, E, E, E, E, E, E, E }, @@ -117,11 +117,11 @@ internal class StageDatabase { new Point[] { new(3, 21), new(13, 3), new(8, 12) }, new Point[] { new(3, 21), new(13, 3), new(8, 16), new(8, 8) } }), - new("Box Seats", new Space[10, 10], new[] { new Point[] { new(2, 7), new(7, 2), new(2, 2), new(7, 7) }}), + new("Box Seats", new Space[10, 10], new[] { new Point[] { new(2, 7), new(7, 2), new(7, 7), new(2, 2) }}), }; - public static Version Version { get; } = new(1, 1, 0, 0); - public static DateTime LastModified { get; } = new(2022, 10, 6, 6, 0, 0, DateTimeKind.Utc); + public static Version Version { get; } = new(1, 2, 0, 0); + public static DateTime LastModified { get; } = new(2022, 12, 26, 7, 0, 0, DateTimeKind.Utc); public static string JSON { get; } public static ReadOnlyCollection Stages { get; }