Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/pets/actions/ActionFree.java

23 lines
483 B
Java
Raw Normal View History

2018-09-12 18:45:00 +02:00
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;
}
}