From de1b33b963b4c93395ed3ffe26f92bbf8c2b606b Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 17 Jun 2023 11:47:50 +0100 Subject: [PATCH] improve getFleaPriceForItem() warning message --- project/src/services/RagfairPriceService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/services/RagfairPriceService.ts b/project/src/services/RagfairPriceService.ts index 02dcab9a..8e71719b 100644 --- a/project/src/services/RagfairPriceService.ts +++ b/project/src/services/RagfairPriceService.ts @@ -104,7 +104,7 @@ export class RagfairPriceService implements OnLoad if (itemPrice === 1) { - this.logger.debug(`Missing item price for ${tplId}`); + this.logger.warning(`Missing live flea or handbook item price for ${tplId}, defaulting to 1, if this is a modded item contact the mods author`); } return itemPrice;