mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-24 01:00:25 +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() {
|
||||
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)));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user