From 43d06a4911d58517410c0935c5278fe7c6dc2484 Mon Sep 17 00:00:00 2001 From: copperwater Date: Tue, 12 Jun 2018 09:36:54 -0400 Subject: [PATCH] Default shk sell prompt to N It can get annoying when you accidentally sell something you didn't mean to by hitting space or enter at this prompt. --- src/shk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shk.c b/src/shk.c index 3076bedaa..05aad8291 100644 --- a/src/shk.c +++ b/src/shk.c @@ -3258,7 +3258,7 @@ xchar x, y; } else qbuf[0] = '\0'; /* just to pacify lint */ - switch (g.sell_response ? g.sell_response : ynaq(qbuf)) { + switch (g.sell_response ? g.sell_response : nyaq(qbuf)) { case 'q': g.sell_response = 'n'; /*FALLTHRU*/