@Override
 public void movePlayerToCoordinates(EntityLivingBase e, double x, double y, double z) {
   if (e instanceof EntityPlayerMP) {
     EntityPlayerMP ep = (EntityPlayerMP) e;
     ep.playerNetServerHandler.setPlayerLocation(x, y, z, ep.cameraYaw, ep.cameraPitch);
   }
   e.setPositionAndUpdate(x, y, z);
 }