mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2026-09-13 07:55:40 +00:00
recallCell now remembers orientation (is cellwalker)
This commit is contained in:
+3
-3
@@ -92,9 +92,9 @@ void save_memory() {
|
||||
heptagon *at = cwt.at->master;
|
||||
heptagon *orig = currentmap->gamestart()->master;
|
||||
|
||||
if(recallCell) {
|
||||
if(unsafeLand(recallCell)) return;
|
||||
heptagon *at2 = recallCell->master;
|
||||
if(recallCell.at) {
|
||||
if(unsafeLand(recallCell.at)) return;
|
||||
heptagon *at2 = recallCell.at->master;
|
||||
int t = 0;
|
||||
while(at != at2) {
|
||||
t++; if(t > 10000) return;
|
||||
|
||||
Reference in New Issue
Block a user