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; }