Update ActionHere.java

This commit is contained in:
Oliver 2022-05-02 23:35:08 +00:00
parent 57b7fbe2e0
commit 1014004cda

View File

@ -19,10 +19,11 @@ public class ActionHere extends PetAction {
pet.getRoomUnit().setGoalLocation(pet.getRoom().getLayout().getTileInFront(habbo.getRoomUnit().getCurrentLocation(), habbo.getRoomUnit().getBodyRotation().getValue()));
pet.getRoomUnit().setCanWalk(true);
if (pet.getHappyness() > 75)
if (pet.getHappyness() > 50) {
pet.say(pet.getPetData().randomVocal(PetVocalsType.PLAYFUL));
else
} else {
pet.say(pet.getPetData().randomVocal(PetVocalsType.GENERIC_NEUTRAL));
}
return true;
}