make a specific object at a specific location */
| 235 | |
| 236 | /* make a specific object at a specific location */ |
| 237 | struct obj * |
| 238 | mksobj_at( |
| 239 | int otyp, |
| 240 | coordxy x, coordxy y, |
| 241 | boolean init, boolean artif) |
| 242 | { |
| 243 | struct obj *otmp; |
| 244 | |
| 245 | otmp = mksobj(otyp, init, artif); |
| 246 | place_object(otmp, x, y); |
| 247 | return otmp; |
| 248 | } |
| 249 | |
| 250 | |
| 251 | /* used for extra orctown loot */ |
no test coverage detected