@EventHandler
public void onJoin(PlayerJoinEvent inEvent) throws Exception
{
RemoteEntity entity = npcManager.createNamedEntity(RemoteEntityType.Human, inEvent.getPlayer().getLocation(), "test");
TamingFeature feature = new RemoteTamingFeature(entity);
feature.tame(inEvent.getPlayer());
entity.getFeatures().addFeature(feature);
entity.getMind().addMovementDesire(new DesireFollowTamer(entity, 5, 15), entity.getMind().getHighestMovementPriority() + 1);
}