From 904e3ffe67c29568153223ccbf6983c13e1796b8 Mon Sep 17 00:00:00 2001 From: Alex Smith Date: Mon, 12 Jan 2026 00:52:24 +0000 Subject: [PATCH] Clarify in the #quit prompt that it doesn't save the game --- doc/fixes3-7-0.txt | 1 + src/end.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/fixes3-7-0.txt b/doc/fixes3-7-0.txt index c86f77a40..0745178c1 100644 --- a/doc/fixes3-7-0.txt +++ b/doc/fixes3-7-0.txt @@ -1566,6 +1566,7 @@ scroll of enchant armor formula has changed (in particular, magical armor now dragonhide can rot throwing ammo without a launcher produces a message polymorphing into a large polyform unequips rather than destroying cloaks +clarify in the #quit message that it doesn't save the game Fixes to 3.7.0-x General Problems Exposed Via git Repository diff --git a/src/end.c b/src/end.c index f7f61020e..a4ed7fc0d 100644 --- a/src/end.c +++ b/src/end.c @@ -98,7 +98,8 @@ done2(void) && y_n("Switch from the tutorial back to regular play?") == 'y') abandon_tutorial = TRUE; - if (abandon_tutorial || !paranoid_query(ParanoidQuit, "Really quit?")) { + if (abandon_tutorial || !paranoid_query( + ParanoidQuit, "Really quit without saving?")) { #ifndef NO_SIGNAL (void) signal(SIGINT, (SIG_RET_TYPE) done1); #endif