| 1938 | } |
| 1939 | |
| 1940 | void |
| 1941 | uunstick(void) |
| 1942 | { |
| 1943 | struct monst *mtmp = u.ustuck; |
| 1944 | |
| 1945 | if (!mtmp) { |
| 1946 | impossible("uunstick: no ustuck?"); |
| 1947 | return; |
| 1948 | } |
| 1949 | set_ustuck((struct monst *) 0); /* before pline() */ |
| 1950 | pline("%s is no longer in your clutches.", Monnam(mtmp)); |
| 1951 | } |
| 1952 | |
| 1953 | void |
| 1954 | skinback(boolean silently) |
no test coverage detected