mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2026-09-20 18:31:59 +00:00
fixed a reverse_direction crash in kd2
This commit is contained in:
@@ -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) };
|
||||||
|
|||||||
Reference in New Issue
Block a user