| 240 | } |
| 241 | |
| 242 | void |
| 243 | make_vomiting(long xtime, boolean talk) |
| 244 | { |
| 245 | long old = Vomiting; |
| 246 | |
| 247 | if (Unaware) |
| 248 | talk = FALSE; |
| 249 | |
| 250 | set_itimeout(&Vomiting, xtime); |
| 251 | disp.botl = TRUE; |
| 252 | if (!xtime && old) |
| 253 | if (talk) |
| 254 | You_feel("much less nauseated now."); |
| 255 | } |
| 256 | |
| 257 | static const char vismsg[] = "vision seems to %s for a moment but is %s now."; |
| 258 | static const char eyemsg[] = "%s momentarily %s."; |
no test coverage detected