1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-02-06 09:50:16 +00:00

racing:: better bounded tracks

This commit is contained in:
Zeno Rogue
2019-11-15 02:36:14 +01:00
parent 9c61d80248
commit f36fee9faa
2 changed files with 20 additions and 8 deletions

View File

@@ -974,7 +974,7 @@ EX int heptdistance(cell *c1, cell *c2) {
else return heptdistance(c1->master, c2->master);
}
map<pair<cell*, cell*>, int> saved_distances;
EX map<pair<cell*, cell*>, int> saved_distances;
set<cell*> keep_distances_from;