Skip to content

Commit

Permalink
Run Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Oct 31, 2024
1 parent dbb4dd2 commit 0b3dde5
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions src/gameObjects/map_city/flyingBirds.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@ export const flyingBirds = (k, map) => {
});

function spawnBird() {
const bird = k.add([
k.sprite('bird'),
k.pos(k.vec2(0, 780)),
k.area(),
]);
const bird = k.add([k.sprite('bird'), k.pos(k.vec2(0, 780)), k.area()]);

bird.play('fly');

Expand All @@ -27,7 +23,7 @@ export const flyingBirds = (k, map) => {
});

return bird;
}
}

const birds = [];

Expand All @@ -37,5 +33,4 @@ export const flyingBirds = (k, map) => {
});

return birds;

};
};

0 comments on commit 0b3dde5

Please sign in to comment.