From 502ac555d392c453792139d93f4c1ed5cbf470ed Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 2 May 2022 23:30:22 +0000 Subject: [PATCH] Update ActionDance.java --- .../com/eu/habbo/habbohotel/pets/actions/ActionDance.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionDance.java b/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionDance.java index d3bcbc5a..aab6fef3 100644 --- a/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionDance.java +++ b/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionDance.java @@ -19,9 +19,8 @@ public class ActionDance extends PetAction { // mambojambo works better than ur dancing skills @Override public boolean apply(Pet pet, Habbo habbo, String[] data) { - if (pet.getHappyness() < 50) { - pet.say(pet.getPetData().randomVocal(PetVocalsType.DISOBEY)); - return false; + if (pet.getHappyness() > 55) { + pet.say(pet.getPetData().randomVocal(PetVocalsType.PLAYFUL)); } else { pet.say(pet.getPetData().randomVocal(PetVocalsType.GENERIC_NEUTRAL)); }