Skip to content

Commit

Permalink
Merge pull request #105 from game-node-app/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
Lamarcke authored Oct 22, 2024
2 parents 9d0053b + 265f216 commit fcbcfc9
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 3 deletions.
Binary file added public/icons/area-42.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/crew.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/take-off.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/you-are-fireworks.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions src/achievements/data/achievements-misc.data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,12 @@ export const achievementsMiscData: Achievement[] = [
category: AchievementCategory.MISC,
checkEligibility: async () => false,
},
{
id: "area-42",
name: "Does this mean something?",
description: "Be a member of Area 42",
expGainAmount: 100,
category: AchievementCategory.MISC,
checkEligibility: async () => false,
},
];
4 changes: 1 addition & 3 deletions src/game/game-repository/game-repository-create.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -301,9 +301,7 @@ export class GameRepositoryCreateService {
.relation(Game, "expansions")
.of(game)
.add(expansion);
} catch (e) {
this.logger.error(e);
}
} catch (e) {}
}
}
if (game.expandedGames) {
Expand Down

0 comments on commit fcbcfc9

Please sign in to comment.