From f910f7b23b5239db8d55c332260d1e2e4b1315aa Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 2 May 2022 23:27:47 +0000 Subject: [PATCH] Remove Hardcodes & Add Vocals Beg.java --- .../java/com/eu/habbo/habbohotel/pets/actions/ActionBeg.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionBeg.java b/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionBeg.java index e2fb3e5e..10788778 100644 --- a/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionBeg.java +++ b/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionBeg.java @@ -17,10 +17,11 @@ public class ActionBeg extends PetAction { public boolean apply(Pet pet, Habbo habbo, String[] data) { pet.clearPosture(); - if (pet.getHappyness() > 90) + if (pet.getHappyness() > 60) { pet.say(pet.getPetData().randomVocal(PetVocalsType.PLAYFUL)); - else + } else { pet.say(pet.getPetData().randomVocal(PetVocalsType.GENERIC_NEUTRAL)); + } return true; }