Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionFree.java
2019-05-26 21:15:26 +03:00

20 lines
475 B
Java

package com.eu.habbo.habbohotel.pets.actions;
import com.eu.habbo.habbohotel.pets.Pet;
import com.eu.habbo.habbohotel.pets.PetAction;
import com.eu.habbo.habbohotel.pets.PetTasks;
import com.eu.habbo.habbohotel.users.Habbo;
public class ActionFree extends PetAction {
public ActionFree() {
super(PetTasks.FREE, false);
}
@Override
public boolean apply(Pet pet, Habbo habbo, String[] data) {
pet.freeCommand();
return true;
}
}