public boolean update(Event event, ObjectiveProgress progress) {
if (event instanceof EntityDeathEvent) {
EntityDeathEvent ev = (EntityDeathEvent) event;
HumanNPC npc = NPCManager.get(ev.getEntity());
if (npc == null) {
CreatureNPC cNPC = CreatureTask.getCreature(ev.getEntity());
if (cNPC != null)
npc = cNPC.npc;
}
if (npc != null) {
String search = progress.getObjective().getString().toLowerCase();