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;