Skip to content

Commit

Permalink
Merge branch 'main' of github.com:After-The-End-Of-All-Things/game
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Jun 21, 2023
2 parents 05a8f7d + 1fdb3a4 commit 6745534
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions server/src/modules/player/gameplay.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,22 +61,27 @@ export class GameplayService {
if (foundLocation) {
const choices = [
...createFilledArray(
this.constantsService.wavePercentBoost + foundLocation.baseStats.wave,
(this.constantsService.wavePercentBoost +
foundLocation.baseStats.wave) |
0,
'Wave',
),
...createFilledArray(
this.constantsService.locationFindPercentBoost +
foundLocation.baseStats.locationFind,
(this.constantsService.locationFindPercentBoost +
foundLocation.baseStats.locationFind) |
0,
'Discovery',
),
...createFilledArray(
this.constantsService.itemFindPercentBoost +
foundLocation.baseStats.itemFind,
(this.constantsService.itemFindPercentBoost +
foundLocation.baseStats.itemFind) |
0,
'Item',
),
...createFilledArray(
this.constantsService.collectibleFindPercentBoost +
foundLocation.baseStats.collectibleFind,
(this.constantsService.collectibleFindPercentBoost +
foundLocation.baseStats.collectibleFind) |
0,
'Collectible',
),
];
Expand Down

0 comments on commit 6745534

Please sign in to comment.