| 1458 | } |
| 1459 | |
| 1460 | void |
| 1461 | strange_feeling(struct obj *obj, const char *txt) |
| 1462 | { |
| 1463 | if (flags.beginner || !txt) |
| 1464 | You("have a %s feeling for a moment, then it passes.", |
| 1465 | Hallucination ? "normal" : "strange"); |
| 1466 | else |
| 1467 | pline1(txt); |
| 1468 | |
| 1469 | if (!obj) /* e.g., crystal ball finds no traps */ |
| 1470 | return; |
| 1471 | |
| 1472 | if (obj->dknown) |
| 1473 | trycall(obj); |
| 1474 | |
| 1475 | useup(obj); |
| 1476 | } |
| 1477 | |
| 1478 | static const char *bottlenames[] = { "bottle", "phial", "flagon", "carafe", |
| 1479 | "flask", "jar", "vial" }; |
no test coverage detected