This commit is contained in:
martin 2023-05-28 14:10:08 +02:00
parent 161b232176
commit a473d8ce66
2 changed files with 3 additions and 3 deletions

View File

@ -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 = {

View File

@ -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;