--- AE/Installer/trunk/source/aeinstallerapp.cpp 2010/03/14 23:31:14 500 +++ AE/Installer/trunk/source/aeinstallerapp.cpp 2010/03/27 03:48:25 504 @@ -139,6 +139,15 @@ bool AEInstallerApp::OnInit() if (updateNotification->ShowModal() == wxID_YES) ProcessAEUpdate(¤tAE, &updateAE, &installerJustUpdated); break; + case UPDATE_THIRD_PARTY: // there's an update with no globalization or Installer strings attached + updateMsg = (string)"One or more third party update(s) for Anniversary Edition package(s) are available.\n" + + (string)"Please note that the AE team assumes no responsibility for the content of third party mods" + + (string)"nor effects that a third party mod may have on your install.\n" + + (string)"Do you wish to install these update(s)?"; + updateNotification = new wxMessageDialog(TheWindow, updateMsg.c_str(), "AE Installer Alert", wxYES_NO | wxICON_EXCLAMATION, wxDefaultPosition); + if (updateNotification->ShowModal() == wxID_YES) + ProcessThirdPartyUpdates(); + break; case UPDATE_GLOB_AVAIL: // there's an update with globalization strings attached updateMsg = updateMsg + "**Note that the update requires you to reglobalize, which will take 5-20 minutes.**\n" + "Before clicking Yes, MAKE SURE you have backed up any mods not installed through\n " +