mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-11 18:00:34 +00:00
fix radar_grid in fake::split()
This commit is contained in:
parent
a189fd9ca8
commit
fad1c650c7
@ -85,7 +85,7 @@ void celldrawer::drawcell_in_radar() {
|
|||||||
|
|
||||||
void celldrawer::radar_grid() {
|
void celldrawer::radar_grid() {
|
||||||
for(int t=0; t<c->type; t++)
|
for(int t=0; t<c->type; t++)
|
||||||
if(c->move(t) && c->move(t) < c)
|
if(c->move(t) && (c->move(t) < c || fake::split()))
|
||||||
addradar(V*get_corner_position(c, t%c->type), V*get_corner_position(c, (t+1)%c->type), gridcolor(c, c->move(t)));
|
addradar(V*get_corner_position(c, t%c->type), V*get_corner_position(c, (t+1)%c->type), gridcolor(c, c->move(t)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user