1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-05-10 11:14:07 +00:00

fix halfvine sidewalls

This commit is contained in:
Zeno Rogue 2025-04-29 17:55:46 +02:00
parent 1c9216583e
commit 2ee3d11458

View File

@ -999,7 +999,7 @@ void celldrawer::draw_halfvine() {
if(cgi.validsidepar[SIDE::WALL]) forCellIdEx(c2, j, c) {
int dis = gmod(i-j, 6);
if(dis != 2 && dis != 4) continue;
if(dis != 1 && dis != 5) continue;
if(placeSidewall(c, j, SIDE::WALL, V, darkena(vcol2, fd, 0xFF))) break;
}
}