From 57b7fbe2e05c2d2828e1eabb31ee8655a33572e7 Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 2 May 2022 23:32:36 +0000 Subject: [PATCH] Update ActionFollow.java --- .../com/eu/habbo/habbohotel/pets/actions/ActionFollow.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionFollow.java b/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionFollow.java index f1611e13..1f8cc158 100644 --- a/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionFollow.java +++ b/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionFollow.java @@ -20,10 +20,11 @@ public class ActionFollow extends PetAction { pet.setTask(PetTasks.FOLLOW); Emulator.getThreading().run(new PetFollowHabbo(pet, habbo, 0)); - if (pet.getHappyness() > 75) + if (pet.getHappyness() > 65) { pet.say(pet.getPetData().randomVocal(PetVocalsType.PLAYFUL)); - else + } else { pet.say(pet.getPetData().randomVocal(PetVocalsType.GENERIC_NEUTRAL)); + } return true; }