1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-22 17:37:39 +00:00

special fake implementation for 1,1 unrectified

This commit is contained in:
Zeno Rogue
2024-06-28 00:37:30 +02:00
parent 4685c3e733
commit e9f68dfb4d
4 changed files with 22 additions and 7 deletions

View File

@@ -1158,7 +1158,7 @@ EX struct dqi_poly *draw_shapevec(cell *c, const shiftmatrix& V, const vector<hp
else if(currentmap->strict_tree_rules()) return &queuepolyat(V, shv[shvid(c)], col, prio);
#if CAP_GP
else if(GOLDBERG) {
else if(GOLDBERG || (INVERSE && fake::in())) {
int id = gp::get_plainshape_id(c);
if(isize(shv) > id) return &queuepolyat(V, shv[id], col, prio);
return NULL;