This commit is contained in:
2024-08-03 10:58:43 -05:00
committed by Celtic Minstrel
parent 09b2c0c822
commit f9ccd2bb9a

View File

@@ -453,13 +453,12 @@ void handle_quit_event() {
if(choice == "cancel") return;
if(choice == "save") {
fs::path file = nav_put_or_temp_party();
if(!file.empty()) return;
if(file.empty()) return;
save_party(file, univ);
}
}
All_Done = true;
}
if(overall_mode == MODE_TOWN || overall_mode == MODE_OUTDOORS){
}else if(overall_mode == MODE_TOWN || overall_mode == MODE_OUTDOORS){
std::string choice = cChoiceDlog("quit-confirm-save", {"save", "quit", "cancel"}).show();
if(choice == "cancel")
return;