1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-05-18 04:02:07 +00:00

fixed Vine Spirits sometimes considering some halfvine-related moves illegal

This commit is contained in:
Zeno Rogue
2026-04-17 17:42:11 +02:00
parent 3cf234d202
commit a8a75fd0ca
3 changed files with 9 additions and 15 deletions
+1 -3
View File
@@ -987,9 +987,7 @@ void celldrawer::draw_grid_edge(int t, color_t col, int prec) {
void celldrawer::draw_halfvine() {
int i =-1;
for(int t=0;t<6; t++) if(c->move(t) && c->move(t)->wall == c->wall)
i = t;
int i = halfvine_direction(c);
qfi.spin = ddspin(c, i, M_PI/S3);
shiftmatrix V2 = V * qfi.spin;