1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-07-29 22:02:50 +00:00

no rug drawn if nomap

This commit is contained in:
Zeno Rogue 2022-09-24 09:12:34 +02:00
parent 804308c03e
commit e459723836

View File

@ -5390,7 +5390,7 @@ EX void gamescreen() {
anims::apply(); anims::apply();
#if CAP_RUG #if CAP_RUG
if(rug::rugged) { if(rug::rugged) {
rug::actDraw(); if(!nomap) rug::actDraw();
} else } else
#endif #endif
wrap_drawfullmap(); wrap_drawfullmap();