1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-09-29 06:20:41 +00:00

fix radar_grid in fake::split()

This commit is contained in:
Zeno Rogue 2020-06-03 12:22:50 +02:00
parent a189fd9ca8
commit fad1c650c7

View File

@ -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)));
} }