From 8bd17ac7e1f3dcd25e70df20734ec483e707cbe8 Mon Sep 17 00:00:00 2001 From: Joseph Geis Date: Wed, 25 Mar 2026 02:23:42 -0600 Subject: [PATCH] Update example for MAKE_MOVE JSON payload The example on line 130 was inconsistent with what the passoff tests were expecting for the MAKE_MOVE command --- chess/6-gameplay/gameplay.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chess/6-gameplay/gameplay.md b/chess/6-gameplay/gameplay.md index 11874644..b0eb776f 100644 --- a/chess/6-gameplay/gameplay.md +++ b/chess/6-gameplay/gameplay.md @@ -127,7 +127,7 @@ In the end, the important thing is that your design supports the additional `mov "commandType": "MAKE_MOVE", "authToken": "tokengoeshere", "gameID": "337", - "move": { "start": { "row": 3, "col": 3 }, "end": { "row": 5, "col": 5 } } + "move": { "startPosition": { "row": 3, "col": 3 }, "endPosition": { "row": 5, "col": 5 } } } ```