1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-23 13:43:19 +00:00

ascii: no more animations in low graphics

This commit is contained in:
Zeno Rogue 2019-06-17 11:00:40 +02:00
parent 48f772698d
commit ecfaa7c49d

View File

@ -1216,7 +1216,7 @@ void fib_ghosts() {
reaction_t current = null_animation;
void pick() {
if(((gold() > 0 || tkills() > 0) && canmove) || geometry != gNormal || ISWEB || ISMOBILE || vid.always3 || pmodel || rug::rugged) {
if(((gold() > 0 || tkills() > 0) && canmove) || geometry != gNormal || ISWEB || ISMOBILE || vid.always3 || pmodel || rug::rugged || vid.wallmode < 2 || vid.monmode < 2) {
current = null_animation;
return;
}