mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-27 22:39:53 +00:00
no saves in Archimedean
This commit is contained in:
parent
e1a52053b7
commit
1c4aa5ba85
2
quit.cpp
2
quit.cpp
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
namespace hr {
|
namespace hr {
|
||||||
|
|
||||||
bool quitsaves() { return (items[itOrbSafety] && havesave); }
|
bool quitsaves() { return (items[itOrbSafety] && havesave && !archimedean); }
|
||||||
|
|
||||||
bool needConfirmation() {
|
bool needConfirmation() {
|
||||||
return canmove && (gold() >= 30 || tkills() >= 50) && !cheater && !quitsaves();
|
return canmove && (gold() >= 30 || tkills() >= 50) && !cheater && !quitsaves();
|
||||||
|
@ -773,6 +773,7 @@ void saveStats(bool emergency = false) {
|
|||||||
if(tour::on) return;
|
if(tour::on) return;
|
||||||
#endif
|
#endif
|
||||||
if(randomPatternsMode) return;
|
if(randomPatternsMode) return;
|
||||||
|
if(archimedean) return;
|
||||||
if(daily::on) return;
|
if(daily::on) return;
|
||||||
if(peace::on) return;
|
if(peace::on) return;
|
||||||
if(!gold()) return;
|
if(!gold()) return;
|
||||||
|
Loading…
Reference in New Issue
Block a user