| 2940 | } |
| 2941 | |
| 2942 | boolean |
| 2943 | u_handsy(void) |
| 2944 | { |
| 2945 | if (nohands(gy.youmonst.data)) { |
| 2946 | You("have no hands!"); /* not `body_part(HAND)' */ |
| 2947 | return FALSE; |
| 2948 | } else if (!freehand()) { |
| 2949 | You("have no free %s.", body_part(HAND)); |
| 2950 | return FALSE; |
| 2951 | } |
| 2952 | return TRUE; |
| 2953 | } |
| 2954 | |
| 2955 | /* getobj callback for object to be stashed into a container */ |
| 2956 | staticfn int |
no test coverage detected