From 2a7b9709e572b697da3cf561d140993cd2dd3586 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Sat, 7 Jun 2025 22:38:47 +0200 Subject: [PATCH] detail --- src/controllers/api/claimCompletedRecipeController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/api/claimCompletedRecipeController.ts b/src/controllers/api/claimCompletedRecipeController.ts index a8824671..6482c9a3 100644 --- a/src/controllers/api/claimCompletedRecipeController.ts +++ b/src/controllers/api/claimCompletedRecipeController.ts @@ -108,7 +108,7 @@ export const claimCompletedRecipeController: RequestHandler = async (req, res) = if (recipe.secretIngredientAction == "SIA_CREATE_KUBROW") { const pet = inventory.KubrowPets.id(pendingRecipe.KubrowPet!)!; - if (pet.Details!.HatchDate!.getTime() >= Date.now()) { + if (pet.Details!.HatchDate!.getTime() > Date.now()) { pet.Details!.HatchDate = new Date(); } let canSetActive = true;