mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-17 10:44:48 +00:00
map:: lost memory not saved
This commit is contained in:
parent
f0e07eca66
commit
9331309af9
@ -770,7 +770,7 @@ EX namespace mapstream {
|
||||
if(!blocked)
|
||||
for(int j=0; j<c->type; j++) {
|
||||
cell *c2 = c->move(j);
|
||||
if(c2 && c2->land != laNone) addToQueue(c2);
|
||||
if(c2 && c2->land != laNone && c2->land != laMemory) addToQueue(c2);
|
||||
}
|
||||
}
|
||||
printf("cells saved = %d\n", isize(cellbyid));
|
||||
|
Loading…
Reference in New Issue
Block a user