| 471 | } /* check_wornmask_slots() */ |
| 472 | |
| 473 | void |
| 474 | mon_set_minvis( |
| 475 | struct monst *mon, |
| 476 | boolean cursed_potion) |
| 477 | { |
| 478 | mon->perminvis = !cursed_potion ? 1 : 0; |
| 479 | if (!mon->invis_blkd) { |
| 480 | mon->minvis = mon->perminvis; |
| 481 | newsym(mon->mx, mon->my); /* make it disappear */ |
| 482 | if (mon->wormno) |
| 483 | see_wsegs(mon); /* and any tail too */ |
| 484 | } |
| 485 | } |
| 486 | |
| 487 | void |
| 488 | mon_adjust_speed( |