| 2167 | } |
| 2168 | |
| 2169 | void |
| 2170 | dissolve_bars(coordxy x, coordxy y) |
| 2171 | { |
| 2172 | levl[x][y].typ = (levl[x][y].edge == 1) ? DOOR |
| 2173 | : (Is_special(&u.uz) || *in_rooms(x, y, 0)) ? ROOM : CORR; |
| 2174 | levl[x][y].flags = 0; /* doormask = D_NODOOR */ |
| 2175 | newsym(x, y); |
| 2176 | if (u_at(x, y)) |
| 2177 | switch_terrain(); |
| 2178 | } |
| 2179 | |
| 2180 | boolean |
| 2181 | closed_door(coordxy x, coordxy y) |
no test coverage detected