| 4621 | } |
| 4622 | |
| 4623 | staticfn int |
| 4624 | there_cmd_menu_far(winid win, coordxy x, coordxy y, int mod) |
| 4625 | { |
| 4626 | int K = 0; |
| 4627 | |
| 4628 | if (mod == CLICK_1) { |
| 4629 | if (linedup(u.ux, u.uy, x, y, 1) |
| 4630 | && dist2(u.ux, u.uy, x, y) < 18*18) |
| 4631 | mcmd_addmenu(win, MCMD_THROW_OBJ, "Throw something"), ++K; |
| 4632 | |
| 4633 | mcmd_addmenu(win, MCMD_TRAVEL, "Travel here"), ++K; |
| 4634 | } |
| 4635 | return K; |
| 4636 | } |
| 4637 | |
| 4638 | staticfn int |
| 4639 | there_cmd_menu_common( |
no test coverage detected