From f6853b240d7ec0c4551221945739a25d586e54f0 Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 2 May 2022 23:36:27 +0000 Subject: [PATCH] Update ActionWings.java --- .../com/eu/habbo/habbohotel/pets/actions/ActionWings.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionWings.java b/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionWings.java index 07a1b225..5c49080b 100644 --- a/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionWings.java +++ b/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionWings.java @@ -19,8 +19,11 @@ public class ActionWings extends PetAction { public boolean apply(Pet pet, Habbo habbo, String[] data) { Emulator.getThreading().run(new PetClearPosture(pet, RoomUnitStatus.WINGS, null, false), this.minimumActionDuration); - if (pet.getHappyness() > 50) + if (pet.getHappyness() > 60) { pet.say(pet.getPetData().randomVocal(PetVocalsType.PLAYFUL)); + } else { + pet.say(pet.getPetData().randomVocal(PetVocalsType.GENERIC_NEUTRAL)); + } return true; }