returns the name of an altar's deity */
| 2511 | |
| 2512 | /* returns the name of an altar's deity */ |
| 2513 | const char * |
| 2514 | a_gname_at(coordxy x, coordxy y) |
| 2515 | { |
| 2516 | if (!IS_ALTAR(levl[x][y].typ)) |
| 2517 | return (char *) 0; |
| 2518 | |
| 2519 | return align_gname(a_align(x, y)); |
| 2520 | } |
| 2521 | |
| 2522 | /* returns the name of the hero's deity */ |
| 2523 | const char * |
no test coverage detected