Update ActionDown.java

This commit is contained in:
Oliver 2022-05-02 23:31:16 +00:00
parent ef0b5080cb
commit 4faf9a4f21

View File

@ -28,10 +28,11 @@ public class ActionDown extends PetAction {
pet.clearPosture();
}, this.minimumActionDuration);
if (pet.getHappyness() > 50)
if (pet.getHappyness() > 40) {
pet.say(pet.getPetData().randomVocal(PetVocalsType.PLAYFUL));
else
} else {
pet.say(pet.getPetData().randomVocal(PetVocalsType.GENERIC_NEUTRAL));
}
return true;
}