From 8c3fd4461bd336fcb30991e6909d4481893049e3 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Sat, 7 Jun 2025 22:39:01 +0200 Subject: [PATCH] fix HatchDate for 'premiumPurchase' of pet --- src/services/inventoryService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/inventoryService.ts b/src/services/inventoryService.ts index 457b2ea7..6060f1e9 100644 --- a/src/services/inventoryService.ts +++ b/src/services/inventoryService.ts @@ -1087,7 +1087,7 @@ export const addKubrowPet = ( HasCollar: true, PrintsRemaining: 3, Status: premiumPurchase ? Status.StatusStasis : Status.StatusIncubating, - HatchDate: new Date(Date.now() + 10 * unixTimesInMs.hour), // On live, this seems to be somewhat randomised so that the pet hatches 9~11 hours after start. + HatchDate: premiumPurchase ? new Date() : new Date(Date.now() + 10 * unixTimesInMs.hour), // On live, this seems to be somewhat randomised so that the pet hatches 9~11 hours after start. IsMale: !!getRandomInt(0, 1), Size: getRandomInt(70, 100) / 100, DominantTraits: traits,