Put random room engravings on room locations only

Another case of engraving going on a cloud.
This commit is contained in:
Pasi Kallinen
2023-11-10 20:08:38 +02:00
parent 069855eefc
commit c44906b28e

View File

@@ -913,8 +913,7 @@ fill_ordinary_room(struct mkroom *croom)
x = pos.x;
y = pos.y;
} while (levl[x][y].typ != ROOM && !rn2(40));
if (!(IS_POOL(levl[x][y].typ)
|| IS_FURNITURE(levl[x][y].typ)))
if (levl[x][y].typ == ROOM)
make_engr_at(x, y, mesg, 0L, MARK);
}
}