make a random object of class 'let' at a specific location; 'let' might be random class; place_object() will validate */
| 224 | /* make a random object of class 'let' at a specific location; |
| 225 | 'let' might be random class; place_object() will validate <x,y> */ |
| 226 | struct obj * |
| 227 | mkobj_at(char let, coordxy x, coordxy y, boolean artif) |
| 228 | { |
| 229 | struct obj *otmp; |
| 230 | |
| 231 | otmp = mkobj(let, artif); |
| 232 | place_object(otmp, x, y); |
| 233 | return otmp; |
| 234 | } |
| 235 | |
| 236 | /* make a specific object at a specific location */ |
| 237 | struct obj * |
no test coverage detected