Refactor
This commit is contained in:
parent
161b232176
commit
a473d8ce66
@ -49,7 +49,6 @@ export const GameComponent: Component = () => {
|
|||||||
function onCharacterMove(character: Character): void {
|
function onCharacterMove(character: Character): void {
|
||||||
if (dice && selectedDice) {
|
if (dice && selectedDice) {
|
||||||
dice.splice(selectedDice.index, 1);
|
dice.splice(selectedDice.index, 1);
|
||||||
setDice([...dice]);
|
|
||||||
}
|
}
|
||||||
setSelectedDice(undefined);
|
setSelectedDice(undefined);
|
||||||
const data: ActionMessage = {
|
const data: ActionMessage = {
|
||||||
|
@ -19,8 +19,9 @@ function findPossibleRecursive(board: GameMap, currentPath: Path, steps: number,
|
|||||||
isPacMan: boolean, possibleList: Path[]): void {
|
isPacMan: boolean, possibleList: Path[]): void {
|
||||||
|
|
||||||
if (isOutsideBoard(currentPath, board.length)) {
|
if (isOutsideBoard(currentPath, board.length)) {
|
||||||
if (!isPacMan) return;
|
if (isPacMan) {
|
||||||
addTeleportationTiles(board, currentPath, steps, isPacMan, possibleList);
|
addTeleportationTiles(board, currentPath, steps, isPacMan, possibleList);
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
} else if (isWall(board, currentPath)) {
|
} else if (isWall(board, currentPath)) {
|
||||||
return;
|
return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user