| 139 | } |
| 140 | |
| 141 | char |
| 142 | temple_occupied(char *array) |
| 143 | { |
| 144 | char *ptr; |
| 145 | |
| 146 | for (ptr = array; *ptr; ptr++) |
| 147 | if (svr.rooms[*ptr - ROOMOFFSET].rtype == TEMPLE) |
| 148 | return *ptr; |
| 149 | return '\0'; |
| 150 | } |
| 151 | |
| 152 | staticfn boolean |
| 153 | histemple_at(struct monst *priest, coordxy x, coordxy y) |
no outgoing calls
no test coverage detected