From 4faf9a4f2189fd5e7452e7beedc29c3f41ec9159 Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 2 May 2022 23:31:16 +0000 Subject: [PATCH] Update ActionDown.java --- .../com/eu/habbo/habbohotel/pets/actions/ActionDown.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionDown.java b/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionDown.java index 70030307..7f21197e 100644 --- a/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionDown.java +++ b/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionDown.java @@ -28,10 +28,11 @@ public class ActionDown extends PetAction { pet.clearPosture(); }, this.minimumActionDuration); - if (pet.getHappyness() > 50) + if (pet.getHappyness() > 40) { pet.say(pet.getPetData().randomVocal(PetVocalsType.PLAYFUL)); - else + } else { pet.say(pet.getPetData().randomVocal(PetVocalsType.GENERIC_NEUTRAL)); + } return true; }