From f56c5bd80173f4dbb15bf397c2f1b48784c54b55 Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Mon, 20 Aug 2012 20:30:19 -0700 Subject: [PATCH] rogue4: fix "You found you found" bug. Both search() and tr_name() printed "you found" when a trap was discovered. It has been removed from search(). --- rogue4/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rogue4/command.c b/rogue4/command.c index 728eec3..be6abcf 100644 --- a/rogue4/command.c +++ b/rogue4/command.c @@ -391,7 +391,7 @@ search() chat(y, x) = TRAP; *fp |= F_REAL; count = running = FALSE; - msg("%s%s", terse ? "" : "you found ", tr_name(*fp & F_TMASK)); + msg("%s", tr_name(*fp & F_TMASK)); break; } }