public boolean playMod(String name) {
    if (mService == null) {
      modToPlay = name;
      return true;
    }

    try {
      return mService.playMod(name);
    } catch (RemoteException e) {
      return false;
    }
  }