1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-04-23 17:41:21 +00:00

Remove incorrect message about saving in Archimedean

Commit 1c4aa5ba85 disabled saving in Archimedean and added a warning that
quitting wouldn't save. Commit 3505f17460 re-enabled saving in Archimedean,
but left the warning. Remove it now.
This commit is contained in:
Joseph C. Sible
2025-09-06 21:56:37 -04:00
parent 7c0d2649e3
commit 432af80b25

View File

@@ -10,7 +10,7 @@ namespace hr {
EX bool quitsaves() {
if(casual) return false;
return (items[itOrbSafety] && CAP_SAVE && !arcm::in());
return (items[itOrbSafety] && CAP_SAVE);
}
EX bool needConfirmationEvenIfSaved() {