You choke on your food...DYWYPI.
I don't know what it is about the human brain that can't understand the
difference between a turn based game and an arcade game, but it must be
pure insinctive. Just like cursorial hunting and race car driving
conflicting each other.
On the other hand, this is just about the *only* prompt in the game
where the "safe" answer is "yes"; the weight of all the other
instances where potentially stupid ideas are escaped from by hitting
"n" creates a mental inertia that overrides the phrasing of the
prompt. I think it's bad design; the question should be rephrased to
"continue eating?" so that the "safe" answer becomes "no", like it is
with everything else.
> On Dec 28, 6:50�pm, APLer <AP...@floor.tilde> wrote:
>> Soren Bjornstad <sobjorns...@gmail.com> wrote
>> innews:b2574c0a-6b6e-4ee0-9
> 362-0f68...@b2g2000yqi.googlegroups.com:
>>
>> I don't know what it is about the human brain that can't understand
>> the difference between a turn based game and an arcade game, but it
>> must be pure insinctive. Just like cursorial hunting and race car
>> driving conflicting each other.
>
> On the other hand, this is just about the *only* prompt in the game
> where the "safe" answer is "yes"; the weight of all the other
> instances where potentially stupid ideas are escaped from by hitting
> "n" creates a mental inertia that overrides the phrasing of the
> prompt. I think it's bad design; the question should be rephrased to
> "continue eating?" so that the "safe" answer becomes "no", like it is
> with everything else.
>
Ah, but one doesn't wait until one understands the question. That's why I
think the above may be true. It's happened to everyone here, you can be
sure of that.
trivial.
diff -Nurd nhc/src/eat.c nhp/src/eat.c
--- nhc/src/eat.c 2009-10-30 21:23:22.598969937 -0400
+++ nhp/src/eat.c 2009-12-31 05:25:32.254075698 -0500
@@ -2226,7 +2226,7 @@
victual.fullwarn = TRUE;
if (victual.canchoke && victual.reqtime > 1) {
/* a one-gulp food will not survive a stop */
- if (yn_function("Stop eating?",ynchars,'y')=='y') {
+ if (yn_function("Continue eating?",ynchars,'n')=='n') {
reset_eat();
nomovemsg = (char *)0;
}