From a473d8ce664fc50479425a51f574ae0667e90589 Mon Sep 17 00:00:00 2001 From: martin Date: Sun, 28 May 2023 14:10:08 +0200 Subject: [PATCH] Refactor --- .../ClientApp/src/components/gameComponent.tsx | 1 - .../ClientApp/src/game/possibleMovesAlgorithm.ts | 5 +++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx index ed49ac9..52f602c 100644 --- a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx +++ b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx @@ -49,7 +49,6 @@ export const GameComponent: Component = () => { function onCharacterMove(character: Character): void { if (dice && selectedDice) { dice.splice(selectedDice.index, 1); - setDice([...dice]); } setSelectedDice(undefined); const data: ActionMessage = { diff --git a/pac-man-board-game/ClientApp/src/game/possibleMovesAlgorithm.ts b/pac-man-board-game/ClientApp/src/game/possibleMovesAlgorithm.ts index 4a381d0..a5a8dfc 100644 --- a/pac-man-board-game/ClientApp/src/game/possibleMovesAlgorithm.ts +++ b/pac-man-board-game/ClientApp/src/game/possibleMovesAlgorithm.ts @@ -19,8 +19,9 @@ function findPossibleRecursive(board: GameMap, currentPath: Path, steps: number, isPacMan: boolean, possibleList: Path[]): void { if (isOutsideBoard(currentPath, board.length)) { - if (!isPacMan) return; - addTeleportationTiles(board, currentPath, steps, isPacMan, possibleList); + if (isPacMan) { + addTeleportationTiles(board, currentPath, steps, isPacMan, possibleList); + } return; } else if (isWall(board, currentPath)) { return;