mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-11-16 13:48:04 +00:00
disabled COMEBACK achievement outside of standard geometry
This commit is contained in:
2
game.cpp
2
game.cpp
@@ -6653,7 +6653,7 @@ void movecost(cell* from, cell *to, int phase) {
|
||||
achievement_final(false);
|
||||
}
|
||||
|
||||
if(celldist(to) == 0 && !usedSafety && gold() >= 100 && (phase & 2))
|
||||
if(geometry == gNormal && celldist(to) == 0 && !usedSafety && gold() >= 100 && (phase & 2))
|
||||
achievement_gain("COMEBACK");
|
||||
|
||||
bool tortoiseOK =
|
||||
|
||||
Reference in New Issue
Block a user