| 538 | } |
| 539 | |
| 540 | void PlaceMonster(int i, int mtype, int x, int y) |
| 541 | { |
| 542 | int rd; |
| 543 | |
| 544 | dMonster[x][y] = i + 1; |
| 545 | |
| 546 | rd = random_(90, 8); |
| 547 | InitMonster(i, rd, mtype, x, y); |
| 548 | } |
| 549 | |
| 550 | #ifndef SPAWN |
| 551 | void PlaceUniqueMonst(int uniqindex, int miniontype, int unpackfilesize) |
no test coverage detected