Gushing forth along LOS from (u.ux, u.uy) */
| 117 | |
| 118 | /* Gushing forth along LOS from (u.ux, u.uy) */ |
| 119 | void |
| 120 | dogushforth(int drinking) |
| 121 | { |
| 122 | int madepool = 0; |
| 123 | |
| 124 | do_clear_area(u.ux, u.uy, 7, gush, (genericptr_t) &madepool); |
| 125 | if (!madepool) { |
| 126 | if (drinking) |
| 127 | Your("thirst is quenched."); |
| 128 | else |
| 129 | pline("Water sprays all over you."); |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | staticfn void |
| 134 | gush(coordxy x, coordxy y, genericptr_t poolcnt) |
no test coverage detected