}
});
removeSheepAction.add(new SetQuestAction(QUEST_SLOT, "handed_over"));
// Hand-Over condition
ChatCondition playerHasFullWeightSheep = new ChatCondition() {
public boolean fire(Player player, Sentence sentence, Entity npc) {
return player.hasSheep()
&& player.getSheep().getWeight() >= Sheep.MAX_WEIGHT;
}
};