mirror of
https://codeberg.org/noisytoot/notnotdnethack.git
synced 2025-07-31 01:42:24 +01:00
forgot to include sinks in clockworks not vomiting
This commit is contained in:
parent
9ddf306c3a
commit
93ffc44641
1 changed files with 11 additions and 4 deletions
|
@ -253,11 +253,12 @@ drinkfountain()
|
|||
pline_The("water is foul! You gag and vomit.");
|
||||
morehungry(rn1(20, 11));
|
||||
vomit();
|
||||
break;
|
||||
}
|
||||
else {
|
||||
pline_The("water is foul! It offends your olfactory receptors.");
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case 21: /* Poisonous */
|
||||
|
||||
|
@ -588,9 +589,15 @@ drinksink()
|
|||
more_experienced(1,0);
|
||||
newexplevel();
|
||||
break;
|
||||
case 9: pline("Gaggg... this tastes like sewage! You vomit.");
|
||||
morehungry(rn1(30-ACURR(A_CON), 11));
|
||||
vomit();
|
||||
case 9: if (!uclockwork) {
|
||||
pline("Gaggg... this tastes like sewage! You vomit.");
|
||||
morehungry(rn1(30-ACURR(A_CON), 11));
|
||||
vomit();
|
||||
}
|
||||
else {
|
||||
pline("Ugh, this tastes like sewage. Your gustatory receptors are offended.");
|
||||
}
|
||||
|
||||
break;
|
||||
case 10: pline("This water contains toxic wastes!");
|
||||
if (!Unchanging) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue