From fd341c527fb6b33bbabf3a41bc78e566d37afc9d Mon Sep 17 00:00:00 2001 From: sarimash Date: Wed, 21 Jun 2023 01:51:29 -0700 Subject: [PATCH] linting --- server/src/modules/player/gameplay.service.ts | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/server/src/modules/player/gameplay.service.ts b/server/src/modules/player/gameplay.service.ts index f98f7f9..3c42c4d 100644 --- a/server/src/modules/player/gameplay.service.ts +++ b/server/src/modules/player/gameplay.service.ts @@ -61,22 +61,27 @@ export class GameplayService { if (foundLocation) { const choices = [ ...createFilledArray( - this.constantsService.wavePercentBoost + foundLocation.baseStats.wave | 0, + (this.constantsService.wavePercentBoost + + foundLocation.baseStats.wave) | + 0, 'Wave', ), ...createFilledArray( - this.constantsService.locationFindPercentBoost + - foundLocation.baseStats.locationFind | 0, + (this.constantsService.locationFindPercentBoost + + foundLocation.baseStats.locationFind) | + 0, 'Discovery', ), ...createFilledArray( - this.constantsService.itemFindPercentBoost + - foundLocation.baseStats.itemFind | 0, + (this.constantsService.itemFindPercentBoost + + foundLocation.baseStats.itemFind) | + 0, 'Item', ), ...createFilledArray( - this.constantsService.collectibleFindPercentBoost + - foundLocation.baseStats.collectibleFind | 0, + (this.constantsService.collectibleFindPercentBoost + + foundLocation.baseStats.collectibleFind) | + 0, 'Collectible', ), ];