Refactor
This commit is contained in:
parent
161b232176
commit
a473d8ce66
@ -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 = {
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user