| 275 | } |
| 276 | } |
| 277 | void AddCandles() |
| 278 | { |
| 279 | int tx, ty; |
| 280 | |
| 281 | tx = quests[QTYPE_PW]._qtx; |
| 282 | ty = quests[QTYPE_PW]._qty; |
| 283 | AddObject(OBJ_STORYCANDLE, tx - 2, ty + 1); |
| 284 | AddObject(OBJ_STORYCANDLE, tx + 3, ty + 1); |
| 285 | AddObject(OBJ_STORYCANDLE, tx - 1, ty + 2); |
| 286 | AddObject(OBJ_STORYCANDLE, tx + 2, ty + 2); |
| 287 | } |
| 288 | |
| 289 | void AddBookLever(int lx1, int ly1, int lx2, int ly2, int x1, int y1, int x2, int y2, int msg) |
| 290 | { |
no test coverage detected