mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-10-14 05:57:37 +00:00
3d:: display other stuff as ascii without errors
This commit is contained in:
@@ -4657,7 +4657,6 @@ void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(c->wall == waNone) ;
|
|
||||||
else if(isFire(c)) {
|
else if(isFire(c)) {
|
||||||
int r = ticks - lastt;
|
int r = ticks - lastt;
|
||||||
r += rand() % 5 + 1;
|
r += rand() % 5 + 1;
|
||||||
@@ -4666,8 +4665,9 @@ void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) {
|
|||||||
drawParticleSpeed(c, wcol, 75 + rand() % 75);
|
drawParticleSpeed(c, wcol, 75 + rand() % 75);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if(winf[c->wall].glyph == '.') ;
|
||||||
|
|
||||||
else error = true;
|
else if(!hiliteclick) queuechr(V, 1, winf[c->wall].glyph, darkenedby(wcol, darken), 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
else switch(c->wall) {
|
else switch(c->wall) {
|
||||||
|
Reference in New Issue
Block a user