mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-20 23:50:27 +00:00
fixed a reverse_direction crash in kd2
This commit is contained in:
parent
c8cb6ef230
commit
032a6b6df2
2
cell.cpp
2
cell.cpp
@ -1307,7 +1307,7 @@ EX vector<cell*> adj_minefield_cells(cell *c) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
EX vector<int> reverse_directions(cell *c, int dir) {
|
EX vector<int> reverse_directions(cell *c, int dir) {
|
||||||
if(PURE) return reverse_directions(c->master, dir);
|
if(PURE && !(kite::in() && WDIM == 2)) return reverse_directions(c->master, dir);
|
||||||
int d = c->degree();
|
int d = c->degree();
|
||||||
if(d & 1)
|
if(d & 1)
|
||||||
return { gmod(dir + c->type/2, c->type), gmod(dir + (c->type+1)/2, c->type) };
|
return { gmod(dir + c->type/2, c->type), gmod(dir + (c->type+1)/2, c->type) };
|
||||||
|
Loading…
Reference in New Issue
Block a user