diff --git a/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionBreatheFire.java b/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionBreatheFire.java index e04a1883..3af202c9 100644 --- a/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionBreatheFire.java +++ b/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionBreatheFire.java @@ -19,8 +19,11 @@ public class ActionBreatheFire extends PetAction { public boolean apply(Pet pet, Habbo habbo, String[] data) { Emulator.getThreading().run(new PetClearPosture(pet, RoomUnitStatus.FLAME, null, false), this.minimumActionDuration); - if (pet.getHappyness() > 50) + if (pet.getHappyness() > 80) { pet.say(pet.getPetData().randomVocal(PetVocalsType.PLAYFUL)); + } else { + pet.say(pet.getPetData().randomVocal(PetVocalsType.GENERIC_NEUTRAL)); + } return true; }